1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
/*=========================================================================
Program: VMTK
Module: $RCSfile: vtkvmtkLaplacianSegmentationLevelSetImageFilter.h,v $
Language: C++
Date: $Date: 2006/04/06 16:48:25 $
Version: $Revision: 1.4 $
Copyright (c) Luca Antiga, David Steinman. All rights reserved.
See LICENCE file for details.
Portions of this code are covered under the VTK copyright.
See VTKCopyright.txt or http://www.kitware.com/VTKCopyright.htm
for details.
Portions of this code are covered under the ITK copyright.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm
for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
// .NAME vtkvmtkLaplacianSegmentationLevelSetImageFilter - Wrapper class around itk::LaplacianSegmentationLevelSetImageFilter
// .SECTION Description
// vtkvmtkLaplacianSegmentationLevelSetImageFilter
#ifndef __vtkvmtkLaplacianSegmentationLevelSetImageFilter_h
#define __vtkvmtkLaplacianSegmentationLevelSetImageFilter_h
#include "vtkSimpleImageToImageFilter.h"
#include "vtkvmtkWin32Header.h"
#include "vtkImageData.h"
class VTK_VMTK_SEGMENTATION_EXPORT vtkvmtkLaplacianSegmentationLevelSetImageFilter : public vtkSimpleImageToImageFilter
{
public:
static vtkvmtkLaplacianSegmentationLevelSetImageFilter *New();
vtkTypeMacro(vtkvmtkLaplacianSegmentationLevelSetImageFilter, vtkSimpleImageToImageFilter);
vtkGetMacro(IsoSurfaceValue,double);
vtkSetMacro(IsoSurfaceValue,double);
vtkGetMacro(NumberOfIterations,int);
vtkSetMacro(NumberOfIterations,int);
vtkGetMacro(PropagationScaling,double);
vtkSetMacro(PropagationScaling,double);
vtkGetMacro(CurvatureScaling,double);
vtkSetMacro(CurvatureScaling,double);
vtkGetMacro(AdvectionScaling,double);
vtkSetMacro(AdvectionScaling,double);
vtkGetMacro(MaximumRMSError,double);
vtkSetMacro(MaximumRMSError,double);
vtkGetMacro(UseNegativeFeatures,int);
vtkSetMacro(UseNegativeFeatures,int);
vtkBooleanMacro(UseNegativeFeatures,int);
vtkGetMacro(AutoGenerateSpeedAdvection,int);
vtkSetMacro(AutoGenerateSpeedAdvection,int);
vtkBooleanMacro(AutoGenerateSpeedAdvection,int);
vtkGetMacro(InterpolateSurfaceLocation,int);
vtkSetMacro(InterpolateSurfaceLocation,int);
vtkBooleanMacro(InterpolateSurfaceLocation,int);
vtkGetMacro(UseImageSpacing,int);
vtkSetMacro(UseImageSpacing,int);
vtkBooleanMacro(UseImageSpacing,int);
vtkGetObjectMacro(FeatureImage,vtkImageData);
vtkSetObjectMacro(FeatureImage,vtkImageData);
vtkGetObjectMacro(SpeedImage,vtkImageData);
vtkSetObjectMacro(SpeedImage,vtkImageData);
vtkGetMacro(RMSChange,double);
vtkGetMacro(ElapsedIterations,int);
protected:
vtkvmtkLaplacianSegmentationLevelSetImageFilter();
~vtkvmtkLaplacianSegmentationLevelSetImageFilter();
virtual void SimpleExecute(vtkImageData* input, vtkImageData* output);
private:
vtkvmtkLaplacianSegmentationLevelSetImageFilter(const vtkvmtkLaplacianSegmentationLevelSetImageFilter&); // Not implemented.
void operator=(const vtkvmtkLaplacianSegmentationLevelSetImageFilter&); // Not implemented
double IsoSurfaceValue;
int NumberOfIterations;
double PropagationScaling;
double CurvatureScaling;
double AdvectionScaling;
double MaximumRMSError;
int UseNegativeFeatures;
int AutoGenerateSpeedAdvection;
int InterpolateSurfaceLocation;
int UseImageSpacing;
double RMSChange;
int ElapsedIterations;
vtkImageData* FeatureImage;
vtkImageData* SpeedImage;
};
#endif
|