X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=itk%2FclitkCropLikeImageFilter.h;h=d3290ac9fbff980b8abe347e0c8138a58aad945d;hb=70138676c09cc565c9909cb617e900cc11a53269;hp=4ceadc1698e068959b986b3f7b0b6f8efc5d8c8f;hpb=523a9f961d83eaed5ec3365a07b9f6be35b538f0;p=clitk.git diff --git a/itk/clitkCropLikeImageFilter.h b/itk/clitkCropLikeImageFilter.h index 4ceadc1..d3290ac 100644 --- a/itk/clitkCropLikeImageFilter.h +++ b/itk/clitkCropLikeImageFilter.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 CLITKCROPLIKEIMAGEFILTER_H #define CLITKCROPLIKEIMAGEFILTER_H @@ -30,9 +30,7 @@ namespace clitk { //-------------------------------------------------------------------- template - class ITK_EXPORT CropLikeImageFilter: - public itk::ImageToImageFilter { - + class ITK_EXPORT CropLikeImageFilter: public itk::ImageToImageFilter { public: /** Standard class typedefs. */ typedef CropLikeImageFilter Self; @@ -52,25 +50,31 @@ namespace clitk { typedef typename ImageType::PixelType PixelType; typedef typename ImageType::RegionType RegionType; typedef typename ImageType::PointType PointType; + typedef typename ImageType::IndexType IndexType; + typedef typename ImageType::SizeType SizeType; - /** Input image to crop */ - void SetInput(const ImageType * image); - /** Image filename for Crop Like */ void SetCropLikeFilename(std::string f); void SetCropLikeImage(const itk::ImageBase * like); void SetCropLikeImage(const itk::ImageBase * like, int axe); + // Set Background if 'like' is greater than input + itkSetMacro(BackgroundValue, PixelType); + itkGetConstMacro(BackgroundValue, PixelType); + /** ImageDimension constants */ itkStaticConstMacro(ImageDimension, unsigned int, ImageType::ImageDimension); - + protected: CropLikeImageFilter(); virtual ~CropLikeImageFilter() {} virtual void GenerateOutputInformation(); virtual void GenerateData(); + virtual void GenerateInputRequestedRegion(); + PixelType m_BackgroundValue; + RegionType m_OutputRegion; RegionType m_Region; std::string m_LikeFilename; bool m_LikeFilenameIsGiven; @@ -78,6 +82,14 @@ namespace clitk { const itk::ImageBase * m_LikeImage; std::vector m_CropAlongThisDimension; + PointType m_StartPoint; // start point in physical world + IndexType m_StartSourceIndex; // start index in "source" image + IndexType m_StartDestIndex; // start index in "destination" image + + PointType m_StopPoint; // stop point in physical world + IndexType m_StopSourceIndex; // stop index in "source" image + IndexType m_StopDestIndex; // stop index in "destination" image + private: CropLikeImageFilter(const Self&); //purposely not implemented void operator=(const Self&); //purposely not implemented