X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=itk%2FclitkAutoCropFilter.txx;h=85ce7be27cc4102825a73e911fccf1c4c6dc6b6c;hb=dfb6b417adbddbc6beda1c8a25ccb3a9687f37ee;hp=743fe13f5a0bddd5a71fb57b5e8eab02d8398af6;hpb=6f94b0c1ef2a28dd349ea0ee03c5e294d9197757;p=clitk.git diff --git a/itk/clitkAutoCropFilter.txx b/itk/clitkAutoCropFilter.txx index 743fe13..85ce7be 100644 --- a/itk/clitkAutoCropFilter.txx +++ b/itk/clitkAutoCropFilter.txx @@ -39,6 +39,7 @@ namespace clitk { AutoCropFilter():itk::ImageToImageFilter() { this->SetNumberOfRequiredInputs(1); m_BackgroundValue = 0; + UseBorderOn(); } //-------------------------------------------------------------------- @@ -95,8 +96,14 @@ namespace clitk { typedef itk::AutoCropLabelMapFilter AutoCropFilterType; typename AutoCropFilterType::Pointer autoCropFilter = AutoCropFilterType::New(); autoCropFilter->SetInput(imageToLabelFilter->GetOutput()); - autoCropFilter->ReleaseDataFlagOff(); - + // autoCropFilter->ReleaseDataFlagOff(); + if (GetUseBorder()) { + typename ImageType::SizeType s; + for(uint i=0; iSetCropBorder(s); + } + autoCropFilter->ReleaseDataFlagOn(); + // Convert to LabelImage typedef itk::LabelMapToLabelImageFilter MapToImageFilterType; typename MapToImageFilterType::Pointer labelToImageFilter = MapToImageFilterType::New(); @@ -114,8 +121,9 @@ namespace clitk { typename ImageType::IndexType index; index.Fill(0); m_Region.SetIndex(index); - DD(m_Region); } + + // Set the region to output output->SetLargestPossibleRegion(m_Region); output->SetRequestedRegion(m_Region); output->SetBufferedRegion(m_Region); @@ -132,18 +140,17 @@ namespace clitk { ImageConstPointer input = dynamic_cast(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 CropFilterType; + // OLD : cropFilter->SetExtractionRegion(m_Region); 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->SetReleaseDataFlag(this->GetReleaseDataFlag()); - cropFilter->SetRegionOfInterest(m_Region); - //cropFilter->SetExtractionRegion(m_Region); // Go ! cropFilter->Update();