VMTK
vtkvmtkFastMarchingDirectionalFreezeImageFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3 Program: VMTK
4 Module: $RCSfile: vtkvmtkFastMarchingDirectionalFreezeImageFilter.h,v $
5 Language: C++
6 
7  Copyright (c) Luca Antiga, David Steinman. All rights reserved.
8  See LICENSE file for details.
9 
10  Portions of this code are covered under the VTK copyright.
11  See VTKCopyright.txt or http://www.kitware.com/VTKCopyright.htm
12  for details.
13 
14  Portions of this code are covered under the ITK copyright.
15  See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm
16  for details.
17 
18  This software is distributed WITHOUT ANY WARRANTY; without even
19  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20  PURPOSE. See the above copyright notices for more information.
21 
22 =========================================================================*/
23 
33 #ifndef __vtkvmtkFastMarchingDirectionalFreezeImageFilter_h
34 #define __vtkvmtkFastMarchingDirectionalFreezeImageFilter_h
35 
36 #include "vtkSimpleImageToImageFilter.h"
37 #include "vtkIdList.h"
38 #include "vtkvmtkWin32Header.h"
39 
40 class VTK_VMTK_SEGMENTATION_EXPORT vtkvmtkFastMarchingDirectionalFreezeImageFilter : public vtkSimpleImageToImageFilter
41 {
42  public:
44  vtkTypeMacro(vtkvmtkFastMarchingDirectionalFreezeImageFilter, vtkSimpleImageToImageFilter);
45 
46  vtkGetMacro(GenerateGradientImage,int);
47  vtkSetMacro(GenerateGradientImage,int);
48  vtkBooleanMacro(GenerateGradientImage,int);
49 
50  vtkGetMacro(TargetReachedMode,int);
51  vtkSetMacro(TargetReachedMode,int);
52 
54  {
55  this->SetTargetReachedMode(ONE_TARGET);
56  }
57 
59  {
60  this->SetTargetReachedMode(ALL_TARGETS);
61  }
62 
63  enum
64  {
66  ALL_TARGETS
67  };
68 
69  vtkGetMacro(TargetValue,double);
70 
71  vtkGetMacro(TargetOffset,double);
72  vtkSetMacro(TargetOffset,double);
73 
74  vtkSetObjectMacro(Seeds,vtkIdList);
75  vtkGetObjectMacro(Seeds,vtkIdList);
76 
77  vtkSetObjectMacro(Targets,vtkIdList);
78  vtkGetObjectMacro(Targets,vtkIdList);
79 
80 protected:
83 
84  virtual void SimpleExecute(vtkImageData* input, vtkImageData* output) VTK_OVERRIDE;
85 
86 private:
88  void operator=(const vtkvmtkFastMarchingDirectionalFreezeImageFilter&); // Not implemented.
89 
90  int GenerateGradientImage;
91  int TargetReachedMode;
92  double TargetValue;
93  double TargetOffset;
94 
95  vtkIdList* Seeds;
96  vtkIdList* Targets;
97 };
98 
99 #endif
Wrapper class around itk::FastMarchingDirectionalFreezeImageFilter.