ITK
4.2.0
Insight Segmentation and Registration Toolkit
|
#include <itkAttributeMorphologyBaseImageFilter.h>
Classes | |
class | ComparePixStruct |
class | GreyAndPos |
Public Types | |
typedef TAttribute | AttributeType |
typedef SmartPointer< const Self > | ConstPointer |
typedef TInputImage::IndexType | IndexType |
typedef Superclass::InputImagePointer | InputImagePointer |
typedef TInputImage | InputImageType |
typedef TInputImage::InternalPixelType | InputInternalPixelType |
typedef TInputImage::PixelType | InputPixelType |
typedef std::list< IndexType > | ListType |
typedef TInputImage::OffsetType | OffsetType |
typedef TOutputImage | OutputImageType |
typedef TOutputImage::InternalPixelType | OutputInternalPixelType |
typedef TOutputImage::PixelType | OutputPixelType |
typedef SmartPointer< Self > | Pointer |
typedef TOutputImage::RegionType | RegionType |
typedef AttributeMorphologyBaseImageFilter | Self |
typedef TInputImage::SizeType | SizeType |
typedef ImageToImageFilter < TInputImage, TOutputImage > | Superclass |
Public Types inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
typedef InputImageType::ConstPointer | InputImageConstPointer |
typedef InputImageType::PixelType | InputImagePixelType |
typedef InputImageType::RegionType | InputImageRegionType |
typedef Superclass::OutputImagePixelType | OutputImagePixelType |
typedef Superclass::OutputImageRegionType | OutputImageRegionType |
Public Types inherited from itk::ImageSource< TOutputImage > | |
typedef Superclass::DataObjectIdentifierType | DataObjectIdentifierType |
typedef DataObject::Pointer | DataObjectPointer |
typedef Superclass::DataObjectPointerArraySizeType | DataObjectPointerArraySizeType |
typedef OutputImageType::Pointer | OutputImagePointer |
Public Types inherited from itk::ProcessObject | |
typedef std::vector < DataObjectPointer > | DataObjectPointerArray |
typedef std::vector < DataObjectIdentifierType > | NameArray |
Public Types inherited from itk::Object | |
Public Types inherited from itk::LightObject |
Static Public Member Functions | |
static Pointer | New () |
Static Public Attributes | |
static const unsigned int | ImageDimension = TOutputImage::ImageDimension |
Static Public Attributes inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
static const unsigned int | InputImageDimension = TInputImage::ImageDimension |
static const unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
Static Public Attributes inherited from itk::ImageSource< TOutputImage > |
Protected Attributes | |
AttributeType | m_AttributeValuePerPixel |
Private Types | |
typedef std::vector < OffsetValueType > | OffsetDirectVecType |
typedef std::vector< OffsetType > | OffsetVecType |
Private Member Functions | |
bool | Criterion (OffsetValueType x, OffsetValueType y) |
OffsetValueType | FindRoot (OffsetValueType x) |
void | MakeSet (OffsetValueType x) |
void | SetupOffsetVec (OffsetDirectVecType &PosOffsets, OffsetVecType &Offsets) |
void | Union (OffsetValueType n, OffsetValueType p) |
Private Attributes | |
AttributeType * | m_AuxData |
bool | m_FullyConnected |
AttributeType | m_Lambda |
OffsetValueType * | m_Parent |
InputPixelType * | m_Raw |
GreyAndPos * | m_SortPixels |
Static Private Attributes | |
static const OffsetValueType | ACTIVE = -2 |
static const OffsetValueType | INACTIVE = -1 |
static const OffsetValueType | ROOT = -3 |
virtual void | SetLambda (AttributeType _arg) |
virtual AttributeType | GetLambda () const |
AttributeMorphologyBaseImageFilter () |
Additional Inherited Members | |
Protected Types inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
typedef ImageToImageFilterDetail::ImageRegionCopier < itkGetStaticConstMacro(OutputImageDimension), itkGetStaticConstMacro(InputImageDimension) > | InputToOutputRegionCopierType |
typedef ImageToImageFilterDetail::ImageRegionCopier < itkGetStaticConstMacro(InputImageDimension), itkGetStaticConstMacro(OutputImageDimension) > | OutputToInputRegionCopierType |
Morphological opening by attributes.
This is the base class for morphology attribute operations. Attribute openings remove blobs according to criteria such as area. When applied to grayscale images it has the effect of trimming peaks based on area while leaving the rest of the image unchanged. It is possible to use attributes besides area, but no others are implemented yet. This filter uses some dodgy coding practices - most notably copying the image data to a linear buffer to allow direct implementation of the published algorithm. It should therefore be quite a good candidate to carry out tests of itk iterator performance with randomish access patterns.
This filter is implemented using the method of Wilkinson, "A comparison of algorithms for Connected set openings and Closings", A. Meijster and M. H. Wilkinson, PAMI, vol 24, no. 4, April 2002. Attempts at implementing the method from ISMM 2000 are also included, but operation appears incorrect. Check the ifdefs if you are interested.
This code was contributed in the Insight Journal paper
"Grayscale morphological attribute operations" by Beare R. http://hdl.handle.net/1926/1316 http://www.insight-journal.org/browse/publication/203
Definition at line 63 of file itkAttributeMorphologyBaseImageFilter.h.
typedef TAttribute itk::AttributeMorphologyBaseImageFilter< TInputImage, TOutputImage, TAttribute, TFunction >::AttributeType |
Reimplemented in itk::AreaOpeningImageFilter< TInputImage, TOutputImage, TAttribute >, and itk::AreaClosingImageFilter< TInputImage, TOutputImage, TAttribute >.
Definition at line 102 of file itkAttributeMorphologyBaseImageFilter.h.
typedef SmartPointer< const Self > itk::AttributeMorphologyBaseImageFilter< TInputImage, TOutputImage, TAttribute, TFunction >::ConstPointer |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::AreaOpeningImageFilter< TInputImage, TOutputImage, TAttribute >, and itk::AreaClosingImageFilter< TInputImage, TOutputImage, TAttribute >.
Definition at line 108 of file itkAttributeMorphologyBaseImageFilter.h.
typedef TInputImage::IndexType itk::AttributeMorphologyBaseImageFilter< TInputImage, TOutputImage, TAttribute, TFunction >::IndexType |
Reimplemented in itk::AreaOpeningImageFilter< TInputImage, TOutputImage, TAttribute >, and itk::AreaClosingImageFilter< TInputImage, TOutputImage, TAttribute >.
Definition at line 86 of file itkAttributeMorphologyBaseImageFilter.h.
typedef Superclass::InputImagePointer itk::AttributeMorphologyBaseImageFilter< TInputImage, TOutputImage, TAttribute, TFunction >::InputImagePointer |
Types from the Superclass
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 76 of file itkAttributeMorphologyBaseImageFilter.h.
typedef TInputImage itk::AttributeMorphologyBaseImageFilter< TInputImage, TOutputImage, TAttribute, TFunction >::InputImageType |
Image typedef support
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Definition at line 96 of file itkAttributeMorphologyBaseImageFilter.h.
typedef TInputImage::InternalPixelType itk::AttributeMorphologyBaseImageFilter< TInputImage, TOutputImage, TAttribute, TFunction >::InputInternalPixelType |
Reimplemented in itk::AreaOpeningImageFilter< TInputImage, TOutputImage, TAttribute >, and itk::AreaClosingImageFilter< TInputImage, TOutputImage, TAttribute >.
Definition at line 85 of file itkAttributeMorphologyBaseImageFilter.h.
typedef TInputImage::PixelType itk::AttributeMorphologyBaseImageFilter< TInputImage, TOutputImage, TAttribute, TFunction >::InputPixelType |
Reimplemented in itk::AreaOpeningImageFilter< TInputImage, TOutputImage, TAttribute >, and itk::AreaClosingImageFilter< TInputImage, TOutputImage, TAttribute >.
Definition at line 84 of file itkAttributeMorphologyBaseImageFilter.h.
typedef std::list< IndexType > itk::AttributeMorphologyBaseImageFilter< TInputImage, TOutputImage, TAttribute, TFunction >::ListType |
Definition at line 101 of file itkAttributeMorphologyBaseImageFilter.h.
|
private |
Definition at line 183 of file itkAttributeMorphologyBaseImageFilter.h.
typedef TInputImage::OffsetType itk::AttributeMorphologyBaseImageFilter< TInputImage, TOutputImage, TAttribute, TFunction >::OffsetType |
Reimplemented in itk::AreaOpeningImageFilter< TInputImage, TOutputImage, TAttribute >, and itk::AreaClosingImageFilter< TInputImage, TOutputImage, TAttribute >.
Definition at line 87 of file itkAttributeMorphologyBaseImageFilter.h.
|
private |
Definition at line 181 of file itkAttributeMorphologyBaseImageFilter.h.
typedef TOutputImage itk::AttributeMorphologyBaseImageFilter< TInputImage, TOutputImage, TAttribute, TFunction >::OutputImageType |
Some convenient typedefs.
Reimplemented from itk::ImageSource< TOutputImage >.
Definition at line 97 of file itkAttributeMorphologyBaseImageFilter.h.
typedef TOutputImage::InternalPixelType itk::AttributeMorphologyBaseImageFilter< TInputImage, TOutputImage, TAttribute, TFunction >::OutputInternalPixelType |
Reimplemented in itk::AreaOpeningImageFilter< TInputImage, TOutputImage, TAttribute >, and itk::AreaClosingImageFilter< TInputImage, TOutputImage, TAttribute >.
Definition at line 83 of file itkAttributeMorphologyBaseImageFilter.h.
typedef TOutputImage::PixelType itk::AttributeMorphologyBaseImageFilter< TInputImage, TOutputImage, TAttribute, TFunction >::OutputPixelType |
Extract some information from the image types. Dimensionality of the two images is assumed to be the same.
Reimplemented in itk::AreaOpeningImageFilter< TInputImage, TOutputImage, TAttribute >, and itk::AreaClosingImageFilter< TInputImage, TOutputImage, TAttribute >.
Definition at line 82 of file itkAttributeMorphologyBaseImageFilter.h.
typedef SmartPointer< Self > itk::AttributeMorphologyBaseImageFilter< TInputImage, TOutputImage, TAttribute, TFunction >::Pointer |
Smart pointer typedef support
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::AreaOpeningImageFilter< TInputImage, TOutputImage, TAttribute >, and itk::AreaClosingImageFilter< TInputImage, TOutputImage, TAttribute >.
Definition at line 107 of file itkAttributeMorphologyBaseImageFilter.h.
typedef TOutputImage::RegionType itk::AttributeMorphologyBaseImageFilter< TInputImage, TOutputImage, TAttribute, TFunction >::RegionType |
Definition at line 100 of file itkAttributeMorphologyBaseImageFilter.h.
typedef AttributeMorphologyBaseImageFilter itk::AttributeMorphologyBaseImageFilter< TInputImage, TOutputImage, TAttribute, TFunction >::Self |
Standard "Self" & Superclass typedef.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::AreaOpeningImageFilter< TInputImage, TOutputImage, TAttribute >, and itk::AreaClosingImageFilter< TInputImage, TOutputImage, TAttribute >.
Definition at line 70 of file itkAttributeMorphologyBaseImageFilter.h.
typedef TInputImage::SizeType itk::AttributeMorphologyBaseImageFilter< TInputImage, TOutputImage, TAttribute, TFunction >::SizeType |
Reimplemented in itk::AreaOpeningImageFilter< TInputImage, TOutputImage, TAttribute >, and itk::AreaClosingImageFilter< TInputImage, TOutputImage, TAttribute >.
Definition at line 88 of file itkAttributeMorphologyBaseImageFilter.h.
typedef ImageToImageFilter< TInputImage, TOutputImage > itk::AttributeMorphologyBaseImageFilter< TInputImage, TOutputImage, TAttribute, TFunction >::Superclass |
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::AreaOpeningImageFilter< TInputImage, TOutputImage, TAttribute >, and itk::AreaClosingImageFilter< TInputImage, TOutputImage, TAttribute >.
Definition at line 71 of file itkAttributeMorphologyBaseImageFilter.h.
|
inlineprotected |
Set/Get the threshold value used to select the connected components. The connected components greater or equal to Lambda are kept, the others are removed. Lambda defaults to 0.
Definition at line 139 of file itkAttributeMorphologyBaseImageFilter.h.
|
inlineprotectedvirtual |
Definition at line 147 of file itkAttributeMorphologyBaseImageFilter.h.
|
inlineprotected |
Definition at line 148 of file itkAttributeMorphologyBaseImageFilter.h.
|
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.
Reimplemented in itk::AreaOpeningImageFilter< TInputImage, TOutputImage, TAttribute >, and itk::AreaClosingImageFilter< TInputImage, TOutputImage, TAttribute >.
|
inlineprivate |
Definition at line 242 of file itkAttributeMorphologyBaseImageFilter.h.
|
protectedvirtual |
AttributeMorphologyBaseImageFilter will produce all of the output. Therefore it must provide an implementation of EnlargeOutputRequestedRegion().
Reimplemented from itk::ProcessObject.
|
inlineprivate |
Definition at line 229 of file itkAttributeMorphologyBaseImageFilter.h.
|
virtual |
Set/Get whether the connected components are defined strictly by face connectivity or by face+edge+vertex connectivity. Default is FullyConnectedOff. For objects that are 1 pixel wide, use FullyConnectedOn.
|
virtual |
Set/Get whether the connected components are defined strictly by face connectivity or by face+edge+vertex connectivity. Default is FullyConnectedOff. For objects that are 1 pixel wide, use FullyConnectedOn.
|
protectedvirtual |
Standard pipeline method.
Reimplemented from itk::ImageSource< TOutputImage >.
Reimplemented in itk::AreaOpeningImageFilter< TInputImage, TOutputImage, TAttribute >, and itk::AreaClosingImageFilter< TInputImage, TOutputImage, TAttribute >.
|
protectedvirtual |
AttributeMorphologyBaseImageFilter needs the entire input. Therefore it must provide an implementation GenerateInputRequestedRegion().
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
virtual |
Set/Get whether the connected components are defined strictly by face connectivity or by face+edge+vertex connectivity. Default is FullyConnectedOff. For objects that are 1 pixel wide, use FullyConnectedOn.
|
virtual |
Set/Get the threshold value used to select the connected components. The connected components greater or equal to Lambda are kept, the others are removed. Lambda defaults to 0.
|
virtual |
Run-time type information (and related methods)
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::AreaOpeningImageFilter< TInputImage, TOutputImage, TAttribute >, and itk::AreaClosingImageFilter< TInputImage, TOutputImage, TAttribute >.
|
inlineprivate |
Definition at line 223 of file itkAttributeMorphologyBaseImageFilter.h.
|
static |
Method for creation through the object factory.
Reimplemented from itk::Object.
Reimplemented in itk::AreaOpeningImageFilter< TInputImage, TOutputImage, TAttribute >, and itk::AreaClosingImageFilter< TInputImage, TOutputImage, TAttribute >.
|
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::ImageToImageFilter< TInputImage, TOutputImage >.
Reimplemented in itk::AreaOpeningImageFilter< TInputImage, TOutputImage, TAttribute >, and itk::AreaClosingImageFilter< TInputImage, TOutputImage, TAttribute >.
|
virtual |
Set/Get whether the connected components are defined strictly by face connectivity or by face+edge+vertex connectivity. Default is FullyConnectedOff. For objects that are 1 pixel wide, use FullyConnectedOn.
|
virtual |
Set/Get the threshold value used to select the connected components. The connected components greater or equal to Lambda are kept, the others are removed. Lambda defaults to 0.
|
private |
|
inlineprivate |
Definition at line 247 of file itkAttributeMorphologyBaseImageFilter.h.
|
staticprivate |
Definition at line 175 of file itkAttributeMorphologyBaseImageFilter.h.
|
static |
Reimplemented in itk::AreaOpeningImageFilter< TInputImage, TOutputImage, TAttribute >, and itk::AreaClosingImageFilter< TInputImage, TOutputImage, TAttribute >.
Definition at line 91 of file itkAttributeMorphologyBaseImageFilter.h.
|
staticprivate |
Definition at line 174 of file itkAttributeMorphologyBaseImageFilter.h.
|
protected |
Definition at line 167 of file itkAttributeMorphologyBaseImageFilter.h.
|
private |
Definition at line 179 of file itkAttributeMorphologyBaseImageFilter.h.
|
private |
Definition at line 170 of file itkAttributeMorphologyBaseImageFilter.h.
|
private |
Definition at line 171 of file itkAttributeMorphologyBaseImageFilter.h.
|
private |
Definition at line 195 of file itkAttributeMorphologyBaseImageFilter.h.
|
private |
Definition at line 200 of file itkAttributeMorphologyBaseImageFilter.h.
|
private |
Definition at line 194 of file itkAttributeMorphologyBaseImageFilter.h.
|
staticprivate |
Definition at line 176 of file itkAttributeMorphologyBaseImageFilter.h.