X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=itk%2FclitkAutoCropFilter.txx;h=cc2c137abdf7e2c8bf04bf1ba5a5fc3979909fcb;hb=494bc435f0dc573e18f347c270f2058573380e53;hp=6f009261f42acc9c7ad5c5206616ebf329ded775;hpb=38786c4da19b87319bbe3cecc145e3d1771d10da;p=clitk.git diff --git a/itk/clitkAutoCropFilter.txx b/itk/clitkAutoCropFilter.txx index 6f00926..cc2c137 100644 --- a/itk/clitkAutoCropFilter.txx +++ b/itk/clitkAutoCropFilter.txx @@ -29,6 +29,7 @@ #include "itkLabelImageToLabelMapFilter.h" #include "itkLabelMapToLabelImageFilter.h" #include "itkRegionOfInterestImageFilter.h" +#include "itkExtractImageFilter.h" namespace clitk { @@ -89,12 +90,12 @@ namespace clitk { typename ImageToMapFilterType::Pointer imageToLabelFilter = ImageToMapFilterType::New(); imageToLabelFilter->SetBackgroundValue(m_BackgroundValue); imageToLabelFilter->SetInput(input); - DD(input->GetLargestPossibleRegion()); // AutoCrop typedef itk::AutoCropLabelMapFilter AutoCropFilterType; typename AutoCropFilterType::Pointer autoCropFilter = AutoCropFilterType::New(); autoCropFilter->SetInput(imageToLabelFilter->GetOutput()); + autoCropFilter->ReleaseDataFlagOff(); // Convert to LabelImage typedef itk::LabelMapToLabelImageFilter MapToImageFilterType; @@ -103,12 +104,10 @@ namespace clitk { // Go ! (needed) labelToImageFilter->Update(); - DD("CHECK AUTOCROP IF NB LABEL == 0 !!!"); m_labeImage = labelToImageFilter->GetOutput(); // Update the output size m_Region = m_labeImage->GetLargestPossibleRegion(); - DD(m_Region); // Sometimes the index is 9223372036854775807 ??? if (m_Region.GetIndex()[0] > 99999) { typename ImageType::IndexType index; @@ -131,11 +130,19 @@ namespace clitk { ImageConstPointer input = dynamic_cast(itk::ProcessObject::GetInput(0)); // Extract the region - typedef itk::RegionOfInterestImageFilter CropFilterType; + + //TO CHANGE WITH EXTRACTIMAGEFILTER ! + + // typedef itk::RegionOfInterestImageFilter CropFilterType; + typedef itk::ExtractImageFilter CropFilterType; m_labeImage->SetRequestedRegion(m_labeImage->GetLargestPossibleRegion()); typename CropFilterType::Pointer cropFilter = CropFilterType::New(); cropFilter->SetInput(m_labeImage); - cropFilter->SetRegionOfInterest(m_Region); + + // cropFilter->SetRegionOfInterest(m_Region); + cropFilter->SetExtractionRegion(m_Region); + + cropFilter->ReleaseDataFlagOff(); // Go ! cropFilter->Update();