]> Creatis software - clitk.git/blobdiff - itk/clitkAutoCropFilter.txx
add option to display memory usage if statgrab is installed
[clitk.git] / itk / clitkAutoCropFilter.txx
index 743fe13f5a0bddd5a71fb57b5e8eab02d8398af6..8f45f575aef816f6b39be387a7af94f66d30c969 100644 (file)
@@ -132,18 +132,17 @@ namespace clitk {
     ImageConstPointer input = dynamic_cast<const ImageType*>(itk::ProcessObject::GetInput(0));
   
     // Extract the region with RegionOfInterestImageFilter or ExtractImageFilter ? 
-    // The first is when reducing the nb of dimension (index always zero)
-    // The second keep index
+    // The second is when reducing the nb of dimension (index always zero)
+    // The first keep index. 
+    // OLD : typedef itk::ExtractImageFilter<ImageType, ImageType> CropFilterType;
+    // OLD : cropFilter->SetExtractionRegion(m_Region);
 
     typedef itk::RegionOfInterestImageFilter<ImageType, ImageType> CropFilterType;
-    //typedef itk::ExtractImageFilter<ImageType, ImageType> CropFilterType;
     m_labeImage->SetRequestedRegion(m_labeImage->GetLargestPossibleRegion());
     typename CropFilterType::Pointer cropFilter = CropFilterType::New();
     cropFilter->SetInput(m_labeImage);
     cropFilter->SetReleaseDataFlag(this->GetReleaseDataFlag());
-
     cropFilter->SetRegionOfInterest(m_Region);
-    //cropFilter->SetExtractionRegion(m_Region);
 
     // Go ! 
     cropFilter->Update();