ITK
4.2.0
Insight Segmentation and Registration Toolkit
|
#include <itkMedianImageFunction.h>
Public Types | |
typedef SmartPointer< const Self > | ConstPointer |
typedef Superclass::ContinuousIndexType | ContinuousIndexType |
typedef Superclass::IndexType | IndexType |
typedef TInputImage | InputImageType |
typedef Superclass::InputPixelType | InputPixelType |
typedef Superclass::OutputType | OutputType |
typedef SmartPointer< Self > | Pointer |
typedef Superclass::PointType | PointType |
typedef MedianImageFunction | Self |
typedef ImageFunction < TInputImage, typename TInputImage::PixelType, TCoordRep > | Superclass |
Public Types inherited from itk::ImageFunction< TInputImage, TInputImage::PixelType, TCoordRep > | |
typedef TCoordRep | CoordRepType |
typedef InputImageType::IndexValueType | IndexValueType |
typedef InputImageType::ConstPointer | InputImageConstPointer |
Public Types inherited from itk::FunctionBase< Point< TCoordRep, TInputImage::ImageDimension >, TInputImage::PixelType > | |
typedef Point< TCoordRep, TInputImage::ImageDimension > | InputType |
Public Types inherited from itk::Object | |
Public Types inherited from itk::LightObject |
Public Member Functions | |
virtual ::itk::LightObject::Pointer | CreateAnother (void) const |
virtual OutputType | Evaluate (const PointType &point) const |
virtual OutputType | EvaluateAtContinuousIndex (const ContinuousIndexType &cindex) const |
virtual OutputType | EvaluateAtIndex (const IndexType &index) const |
virtual const char * | GetNameOfClass () const |
virtual void | SetNeighborhoodRadius (unsigned int _arg) |
virtual const unsigned int & | GetNeighborhoodRadius () |
Public Member Functions inherited from itk::ImageFunction< TInputImage, TInputImage::PixelType, TCoordRep > | |
void | ConvertContinuousIndexToNearestIndex (const ContinuousIndexType &cindex, IndexType &index) const |
void | ConvertPointToContinuousIndex (const PointType &point, ContinuousIndexType &cindex) const |
void | ConvertPointToNearestIndex (const PointType &point, IndexType &index) const |
virtual TInputImage::PixelType | Evaluate (const PointType &point) const =0 |
virtual TInputImage::PixelType | EvaluateAtContinuousIndex (const ContinuousIndexType &index) const =0 |
virtual TInputImage::PixelType | EvaluateAtIndex (const IndexType &index) const =0 |
virtual const ContinuousIndexType & | GetEndContinuousIndex () |
virtual const IndexType & | GetEndIndex () |
const InputImageType * | GetInputImage () const |
virtual const ContinuousIndexType & | GetStartContinuousIndex () |
virtual const IndexType & | GetStartIndex () |
virtual void | SetInputImage (const InputImageType *ptr) |
virtual bool | IsInsideBuffer (const IndexType &index) const |
virtual bool | IsInsideBuffer (const ContinuousIndexType &index) const |
virtual bool | IsInsideBuffer (const PointType &point) const |
Static Public Member Functions | |
static Pointer | New () |
Static Public Attributes | |
static const unsigned int | ImageDimension = InputImageType::ImageDimension |
Static Public Attributes inherited from itk::ImageFunction< TInputImage, TInputImage::PixelType, TCoordRep > |
Protected Member Functions | |
MedianImageFunction () | |
void | PrintSelf (std::ostream &os, Indent indent) const |
~MedianImageFunction () | |
Protected Member Functions inherited from itk::ImageFunction< TInputImage, TInputImage::PixelType, TCoordRep > | |
ImageFunction () | |
~ImageFunction () | |
Protected Member Functions inherited from itk::FunctionBase< Point< TCoordRep, TInputImage::ImageDimension >, TInputImage::PixelType > | |
FunctionBase () | |
~FunctionBase () | |
Protected Member Functions inherited from itk::Object | |
Object () | |
bool | PrintObservers (std::ostream &os, Indent indent) const |
virtual void | SetTimeStamp (const TimeStamp &time) |
virtual | ~Object () |
Protected Member Functions inherited from itk::LightObject | |
virtual LightObject::Pointer | InternalClone () const |
LightObject () | |
virtual void | PrintHeader (std::ostream &os, Indent indent) const |
virtual void | PrintTrailer (std::ostream &os, Indent indent) const |
virtual | ~LightObject () |
Private Member Functions | |
MedianImageFunction (const Self &) | |
void | operator= (const Self &) |
Private Attributes | |
unsigned int | m_NeighborhoodRadius |
Additional Inherited Members | |
Protected Attributes inherited from itk::ImageFunction< TInputImage, TInputImage::PixelType, TCoordRep > | |
ContinuousIndexType | m_EndContinuousIndex |
IndexType | m_EndIndex |
InputImageConstPointer | m_Image |
ContinuousIndexType | m_StartContinuousIndex |
IndexType | m_StartIndex |
Calculate the median value in the neighborhood of a pixel.
Calculate the median pixel value over the standard 8, 26, etc. connected neighborhood. This calculation uses a ZeroFluxNeumannBoundaryCondition.
If called with a ContinuousIndex or Point, the calculation is performed at the nearest neighbor.
This class is templated over the input image type and the coordinate representation type (e.g. float or double ).
Definition at line 47 of file itkMedianImageFunction.h.
typedef SmartPointer< const Self > itk::MedianImageFunction< TInputImage, TCoordRep >::ConstPointer |
Reimplemented from itk::ImageFunction< TInputImage, TInputImage::PixelType, TCoordRep >.
Definition at line 59 of file itkMedianImageFunction.h.
typedef Superclass::ContinuousIndexType itk::MedianImageFunction< TInputImage, TCoordRep >::ContinuousIndexType |
ContinuousIndex typedef support.
Reimplemented from itk::ImageFunction< TInputImage, TInputImage::PixelType, TCoordRep >.
Definition at line 78 of file itkMedianImageFunction.h.
typedef Superclass::IndexType itk::MedianImageFunction< TInputImage, TCoordRep >::IndexType |
Index typedef support.
Reimplemented from itk::ImageFunction< TInputImage, TInputImage::PixelType, TCoordRep >.
Definition at line 75 of file itkMedianImageFunction.h.
typedef TInputImage itk::MedianImageFunction< TInputImage, TCoordRep >::InputImageType |
InputImageType typedef support.
Reimplemented from itk::ImageFunction< TInputImage, TInputImage::PixelType, TCoordRep >.
Definition at line 65 of file itkMedianImageFunction.h.
typedef Superclass::InputPixelType itk::MedianImageFunction< TInputImage, TCoordRep >::InputPixelType |
InputPixel typedef support
Reimplemented from itk::ImageFunction< TInputImage, TInputImage::PixelType, TCoordRep >.
Definition at line 69 of file itkMedianImageFunction.h.
typedef Superclass::OutputType itk::MedianImageFunction< TInputImage, TCoordRep >::OutputType |
OutputType typedef support.
Reimplemented from itk::ImageFunction< TInputImage, TInputImage::PixelType, TCoordRep >.
Definition at line 72 of file itkMedianImageFunction.h.
typedef SmartPointer< Self > itk::MedianImageFunction< TInputImage, TCoordRep >::Pointer |
Reimplemented from itk::ImageFunction< TInputImage, TInputImage::PixelType, TCoordRep >.
Definition at line 58 of file itkMedianImageFunction.h.
typedef Superclass::PointType itk::MedianImageFunction< TInputImage, TCoordRep >::PointType |
Point typedef support.
Reimplemented from itk::ImageFunction< TInputImage, TInputImage::PixelType, TCoordRep >.
Definition at line 81 of file itkMedianImageFunction.h.
typedef MedianImageFunction itk::MedianImageFunction< TInputImage, TCoordRep >::Self |
Standard class typedefs.
Reimplemented from itk::ImageFunction< TInputImage, TInputImage::PixelType, TCoordRep >.
Definition at line 54 of file itkMedianImageFunction.h.
typedef ImageFunction< TInputImage, typename TInputImage::PixelType, TCoordRep > itk::MedianImageFunction< TInputImage, TCoordRep >::Superclass |
Reimplemented from itk::ImageFunction< TInputImage, TInputImage::PixelType, TCoordRep >.
Definition at line 56 of file itkMedianImageFunction.h.
|
protected |
|
inlineprotected |
Definition at line 116 of file itkMedianImageFunction.h.
|
private |
|
virtual |
Create an object from an instance, potentially deferring to a factory. This method allows you to create an instance of an object that is exactly the same type as the referring object. This is useful in cases where an object has been cast back to a base class.
Reimplemented from itk::Object.
|
inlinevirtual |
Evaluate the function at non-integer positions
Definition at line 91 of file itkMedianImageFunction.h.
|
inlinevirtual |
Definition at line 99 of file itkMedianImageFunction.h.
|
virtual |
Evalulate the function at specified index
|
virtual |
Run-time type information (and related methods).
Reimplemented from itk::ImageFunction< TInputImage, TInputImage::PixelType, TCoordRep >.
|
virtual |
Get/Set the radius of the neighborhood over which the statistics are evaluated
|
static |
Method for creation through the object factory.
Reimplemented from itk::Object.
|
private |
Mutex lock to protect modification to the reference count
Reimplemented from itk::ImageFunction< TInputImage, TInputImage::PixelType, TCoordRep >.
|
protectedvirtual |
Methods invoked by Print() to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from itk::ImageFunction< TInputImage, TInputImage::PixelType, TCoordRep >.
|
virtual |
Get/Set the radius of the neighborhood over which the statistics are evaluated
|
static |
Dimension of the underlying image.
Reimplemented from itk::ImageFunction< TInputImage, TInputImage::PixelType, TCoordRep >.
Definition at line 85 of file itkMedianImageFunction.h.
|
private |
Definition at line 123 of file itkMedianImageFunction.h.