]> Creatis software - clitk.git/blob - itk/clitkAutoCropFilter.h
add possibility to display one ROI by FG value
[clitk.git] / itk / clitkAutoCropFilter.h
1 /*=========================================================================
2   Program:   vv                     http://www.creatis.insa-lyon.fr/rio/vv
3
4   Authors belong to: 
5   - University of LYON              http://www.universite-lyon.fr/
6   - Léon Bérard cancer center       http://oncora1.lyon.fnclcc.fr
7   - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
8
9   This software is distributed WITHOUT ANY WARRANTY; without even
10   the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11   PURPOSE.  See the copyright notices for more information.
12
13   It is distributed under dual licence
14
15   - BSD        See included LICENSE.txt file
16   - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17   ======================================================================-====*/
18
19 #ifndef CLITKAUTOCROPFILTER_H
20 #define CLITKAUTOCROPFILTER_H
21
22 #include <itkImageToImageFilter.h>
23
24 namespace clitk {
25   
26   //--------------------------------------------------------------------
27   /*
28     Perform auto crop on a Label Image (with Background defined)
29   */
30   //--------------------------------------------------------------------
31   
32   template <class TImageType>
33   class ITK_EXPORT AutoCropFilter: 
34     public itk::ImageToImageFilter<TImageType, TImageType> {
35
36   public:
37     /** Standard class typedefs. */
38     typedef AutoCropFilter                         Self;
39     typedef itk::ImageToImageFilter<TImageType, TImageType>  Superclass;
40     typedef itk::SmartPointer<Self>                          Pointer;
41     typedef itk::SmartPointer<const Self>                    ConstPointer;
42     
43     /** Method for creation through the object factory. */
44     itkNewMacro(Self);
45     
46     /** Run-time type information (and related methods). */
47     itkTypeMacro(AutoCropFilter, ImageToImageFilter);
48
49     /** Some convenient typedefs. */
50     typedef TImageType                       ImageType;
51     typedef typename ImageType::ConstPointer ImageConstPointer;
52     typedef typename ImageType::Pointer      ImagePointer;
53     typedef typename ImageType::PixelType    ImagePixelType;
54     typedef typename ImageType::RegionType   ImageRegionType;
55     typedef long LabelType;
56
57     /** Connect one of the operands for pixel-wise addition */
58     void SetInput( const ImageType * image);
59     
60     // LabelImage information (BG)
61     void SetBackgroundValue(ImagePixelType p);
62
63     /** ImageDimension constants */
64     itkStaticConstMacro(ImageDimension, unsigned int, TImageType::ImageDimension);
65     
66   protected:
67     AutoCropFilter();
68     virtual ~AutoCropFilter() {}
69     
70     virtual void GenerateOutputInformation();
71     virtual void GenerateData();
72     
73     ImagePixelType m_BackgroundValue;
74     ImageRegionType m_Region;
75     ImagePointer m_labeImage;
76     
77   private:
78     AutoCropFilter(const Self&); //purposely not implemented
79     void operator=(const Self&); //purposely not implemented
80     
81   }; // end class
82   //--------------------------------------------------------------------
83
84 } // end namespace clitk
85 //--------------------------------------------------------------------
86
87 #ifndef ITK_MANUAL_INSTANTIATION
88 #include "clitkAutoCropFilter.txx"
89 #endif
90
91 #endif