X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=itk%2FclitkCropLikeImageFilter.h;h=221f61cd3fc7934738d7b9980352f4c6c9d06899;hb=4990db0e34e1095b4812a203d7cd46618a5e8c3d;hp=4ceadc1698e068959b986b3f7b0b6f8efc5d8c8f;hpb=523a9f961d83eaed5ec3365a07b9f6be35b538f0;p=clitk.git diff --git a/itk/clitkCropLikeImageFilter.h b/itk/clitkCropLikeImageFilter.h index 4ceadc1..221f61c 100644 --- a/itk/clitkCropLikeImageFilter.h +++ b/itk/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