#include <itkBinaryThresholdImageFunction.h>
Inheritance diagram for itk::BinaryThresholdImageFunction< TInputImage, TCoordRep >:
Public Types | |
typedef BinaryThresholdImageFunction | Self |
typedef ImageFunction< TInputImage, bool, TCoordRep > | Superclass |
typedef SmartPointer< Self > | Pointer |
typedef SmartPointer< const Self > | ConstPointer |
typedef Superclass::InputImageType | InputImageType |
typedef TInputImage::PixelType | PixelType |
typedef Superclass::PointType | PointType |
typedef Superclass::IndexType | IndexType |
typedef Superclass::ContinuousIndexType | ContinuousIndexType |
Public Member Functions | |
virtual const char * | GetNameOfClass () const |
itkStaticConstMacro (ImageDimension, unsigned int, Superclass::ImageDimension) | |
virtual bool | Evaluate (const PointType &point) const |
virtual bool | EvaluateAtContinuousIndex (const ContinuousIndexType &index) const |
virtual const PixelType & | GetLower () |
virtual const PixelType & | GetUpper () |
void | ThresholdAbove (PixelType thresh) |
void | ThresholdBelow (PixelType thresh) |
void | ThresholdBetween (PixelType lower, PixelType upper) |
virtual bool | EvaluateAtIndex (const IndexType &index) const |
Static Public Member Functions | |
Pointer | New () |
Protected Member Functions | |
BinaryThresholdImageFunction () | |
~BinaryThresholdImageFunction () | |
void | PrintSelf (std::ostream &os, Indent indent) const |
Methods Evaluate, EvaluateAtIndex and EvaluateAtContinuousIndex respectively evaluate the function at an geometric point, image index and continuous image index.
Definition at line 41 of file itkBinaryThresholdImageFunction.h.
|
Reimplemented from itk::ImageFunction< TInputImage, bool, TCoordRep >. Reimplemented in itk::NeighborhoodBinaryThresholdImageFunction< TInputImage, TCoordRep >. Definition at line 49 of file itkBinaryThresholdImageFunction.h. |
|
ContinuousIndex typedef support. Reimplemented from itk::ImageFunction< TInputImage, bool, TCoordRep >. Reimplemented in itk::NeighborhoodBinaryThresholdImageFunction< TInputImage, TCoordRep >. Definition at line 73 of file itkBinaryThresholdImageFunction.h. Referenced by itk::BinaryThresholdImageFunction< TInputImage, TCoordRep >::EvaluateAtContinuousIndex(). |
|
Index typedef support. Reimplemented from itk::ImageFunction< TInputImage, bool, TCoordRep >. Reimplemented in itk::NeighborhoodBinaryThresholdImageFunction< TInputImage, TCoordRep >. Definition at line 70 of file itkBinaryThresholdImageFunction.h. Referenced by itk::BinaryThresholdImageFunction< TInputImage, TCoordRep >::Evaluate(), itk::BinaryThresholdImageFunction< TInputImage, TCoordRep >::EvaluateAtContinuousIndex(), and itk::BinaryThresholdImageFunction< TInputImage, TCoordRep >::EvaluateAtIndex(). |
|
InputImageType typedef support. Reimplemented from itk::ImageFunction< TInputImage, bool, TCoordRep >. Reimplemented in itk::NeighborhoodBinaryThresholdImageFunction< TInputImage, TCoordRep >. Definition at line 58 of file itkBinaryThresholdImageFunction.h. |
|
Typedef to describe the type of pixel. Reimplemented in itk::NeighborhoodBinaryThresholdImageFunction< TInputImage, TCoordRep >. Definition at line 61 of file itkBinaryThresholdImageFunction.h. Referenced by itk::BinaryThresholdImageFunction< TInputImage, TCoordRep >::EvaluateAtIndex(), and itk::BinaryThresholdImageFunction< TInputImage, TCoordRep >::~BinaryThresholdImageFunction(). |
|
Reimplemented from itk::ImageFunction< TInputImage, bool, TCoordRep >. Reimplemented in itk::NeighborhoodBinaryThresholdImageFunction< TInputImage, TCoordRep >. Definition at line 48 of file itkBinaryThresholdImageFunction.h. |
|
Point typedef support. Reimplemented from itk::ImageFunction< TInputImage, bool, TCoordRep >. Reimplemented in itk::NeighborhoodBinaryThresholdImageFunction< TInputImage, TCoordRep >. Definition at line 67 of file itkBinaryThresholdImageFunction.h. Referenced by itk::BinaryThresholdImageFunction< TInputImage, TCoordRep >::Evaluate(). |
|
Standard class typedefs. Reimplemented from itk::ImageFunction< TInputImage, bool, TCoordRep >. Reimplemented in itk::NeighborhoodBinaryThresholdImageFunction< TInputImage, TCoordRep >. Definition at line 46 of file itkBinaryThresholdImageFunction.h. Referenced by itk::BinaryThresholdImageFunction< TInputImage, TCoordRep >::~BinaryThresholdImageFunction(). |
|
Reimplemented from itk::ImageFunction< TInputImage, bool, TCoordRep >. Reimplemented in itk::NeighborhoodBinaryThresholdImageFunction< TInputImage, TCoordRep >. Definition at line 47 of file itkBinaryThresholdImageFunction.h. |
|
|
|
Definition at line 140 of file itkBinaryThresholdImageFunction.h. References itk::BinaryThresholdImageFunction< TInputImage, TCoordRep >::PixelType, and itk::BinaryThresholdImageFunction< TInputImage, TCoordRep >::Self. |
|
BinaryThreshold the image at a point position Returns true if the image intensity at the specified point position satisfies the threshold criteria. The point is assumed to lie within the image buffer. ImageFunction::IsInsideBuffer() can be used to check bounds before calling the method. Implements itk::ImageFunction< TInputImage, bool, TCoordRep >. Reimplemented in itk::NeighborhoodBinaryThresholdImageFunction< TInputImage, TCoordRep >. Definition at line 84 of file itkBinaryThresholdImageFunction.h. References itk::BinaryThresholdImageFunction< TInputImage, TCoordRep >::IndexType, and itk::BinaryThresholdImageFunction< TInputImage, TCoordRep >::PointType. |
|
BinaryThreshold the image at a continuous index position Returns true if the image intensity at the specified point position satisfies the threshold criteria. The point is assumed to lie within the image buffer. ImageFunction::IsInsideBuffer() can be used to check bounds before calling the method. Implements itk::ImageFunction< TInputImage, bool, TCoordRep >. Reimplemented in itk::NeighborhoodBinaryThresholdImageFunction< TInputImage, TCoordRep >. Definition at line 99 of file itkBinaryThresholdImageFunction.h. References itk::BinaryThresholdImageFunction< TInputImage, TCoordRep >::ContinuousIndexType, and itk::BinaryThresholdImageFunction< TInputImage, TCoordRep >::IndexType. |
|
BinaryThreshold the image at an index position. Returns true if the image intensity at the specified point position satisfies the threshold criteria. The point is assumed to lie within the image buffer. ImageFunction::IsInsideBuffer() can be used to check bounds before calling the method. Implements itk::ImageFunction< TInputImage, bool, TCoordRep >. Reimplemented in itk::NeighborhoodBinaryThresholdImageFunction< TInputImage, TCoordRep >. Definition at line 116 of file itkBinaryThresholdImageFunction.h. References itk::BinaryThresholdImageFunction< TInputImage, TCoordRep >::IndexType, and itk::BinaryThresholdImageFunction< TInputImage, TCoordRep >::PixelType. |
|
Get the lower threshold value. |
|
Run-time type information (and related methods). Reimplemented from itk::ImageFunction< TInputImage, bool, TCoordRep >. Reimplemented in itk::NeighborhoodBinaryThresholdImageFunction< TInputImage, TCoordRep >. |
|
Get the upper threshold value. |
|
Dimension underlying input image. |
|
Method for creation through the object factory. Reimplemented from itk::Object. Reimplemented in itk::NeighborhoodBinaryThresholdImageFunction< TInputImage, TCoordRep >. |
|
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, bool, TCoordRep >. Reimplemented in itk::NeighborhoodBinaryThresholdImageFunction< TInputImage, TCoordRep >. |
|
Values greater than or equal to the value are inside. |
|
Values less than or equal to the value are inside. |
|
Values that lie between lower and upper inclusive are inside. |