ITK  4.8.0
Insight Segmentation and Registration Toolkit
itkSatoVesselnessSigmoidFeatureGenerator.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Insight Segmentation & Registration Toolkit
4  Module: itkSatoVesselnessSigmoidFeatureGenerator.h
5  Language: C++
6  Date: $Date$
7  Version: $Revision$
8 
9  Copyright (c) Insight Software Consortium. All rights reserved.
10  See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
11 
12  This software is distributed WITHOUT ANY WARRANTY; without even
13  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14  PURPOSE. See the above copyright notices for more information.
15 
16 =========================================================================*/
17 #ifndef __itkSatoVesselnessSigmoidFeatureGenerator_h
18 #define __itkSatoVesselnessSigmoidFeatureGenerator_h
19 
21 #include "itkSigmoidImageFilter.h"
22 
23 namespace itk
24 {
25 
38 template <unsigned int NDimension>
40 {
41 public:
47 
49  itkNewMacro(Self);
50 
53 
55  itkStaticConstMacro(Dimension, unsigned int, NDimension);
56 
61  itkSetMacro( SigmoidAlpha, double );
62  itkGetMacro( SigmoidAlpha, double );
64 
67  itkSetMacro( SigmoidBeta, double );
68  itkGetMacro( SigmoidBeta, double );
70 
71 protected:
74  void PrintSelf(std::ostream& os, Indent indent) const;
75 
78  void GenerateData ();
79 
80 private:
81  SatoVesselnessSigmoidFeatureGenerator(const Self&); //purposely not implemented
82  void operator=(const Self&); //purposely not implemented
83 
84  typedef float InternalPixelType;
86 
89 
91 
93 
95 
97  double m_SigmoidBeta;
98 };
99 
100 } // end namespace itk
101 
102 #ifndef ITK_MANUAL_INSTANTIATION
103 # include "itkSatoVesselnessSigmoidFeatureGenerator.hxx"
104 #endif
105 
106 #endif
Light weight base class for most itk classes.
SigmoidImageFilter< InternalImageType, InternalImageType > SigmoidFilterType
Computes the sigmoid function pixel-wise.
Generates a feature image by computing the Sato Vesselness measure of the input image and applying a ...
Generates a feature image by computing the Sato Vesselness measure of the input image.
Implementation of an image as spatial object.
ImageSpatialObject< NDimension, OutputPixelType > OutputImageSpatialObjectType
Control indentation during Print() invocation.
Definition: itkIndent.h:49
SatoVesselnessFeatureGenerator< NDimension > Superclass
Templated n-dimensional image class.
Definition: itkImage.h:75