X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=itk%2FclitkAutoCropFilter.h;h=f24aa05c09e506a34b9bc970e4705b8298727ad1;hb=a523f5be1e221995c0d4d29a0077b5e8b984c96d;hp=f4f35bcc0b15b23eb53745f2d595f837c4b4a98f;hpb=523a9f961d83eaed5ec3365a07b9f6be35b538f0;p=clitk.git diff --git a/itk/clitkAutoCropFilter.h b/itk/clitkAutoCropFilter.h index f4f35bc..f24aa05 100644 --- a/itk/clitkAutoCropFilter.h +++ b/itk/clitkAutoCropFilter.h @@ -3,7 +3,7 @@ Authors belong to: - University of LYON http://www.universite-lyon.fr/ - - Léon Bérard cancer center http://oncora1.lyon.fnclcc.fr + - Léon Bérard cancer center http://www.centreleonberard.fr - CREATIS CNRS laboratory http://www.creatis.insa-lyon.fr This software is distributed WITHOUT ANY WARRANTY; without even @@ -14,7 +14,7 @@ - BSD See included LICENSE.txt file - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html - ======================================================================-====*/ + ===========================================================================**/ #ifndef CLITKAUTOCROPFILTER_H #define CLITKAUTOCROPFILTER_H @@ -54,10 +54,15 @@ namespace clitk { typedef long LabelType; /** Connect one of the operands for pixel-wise addition */ - void SetInput( const ImageType * image); + void SetInput( const ImageType * image) ITK_OVERRIDE; // LabelImage information (BG) void SetBackgroundValue(ImagePixelType p); + + // Use a border + itkSetMacro(UseBorder, bool); + itkGetConstMacro(UseBorder, bool); + itkBooleanMacro(UseBorder); /** ImageDimension constants */ itkStaticConstMacro(ImageDimension, unsigned int, ImageType::ImageDimension); @@ -66,12 +71,13 @@ namespace clitk { AutoCropFilter(); virtual ~AutoCropFilter() {} - virtual void GenerateOutputInformation(); - virtual void GenerateData(); + virtual void GenerateOutputInformation() ITK_OVERRIDE; + virtual void GenerateData() ITK_OVERRIDE; ImagePixelType m_BackgroundValue; ImageRegionType m_Region; ImagePointer m_labeImage; + bool m_UseBorder; private: AutoCropFilter(const Self&); //purposely not implemented