ITK  4.0.0
Insight Segmentation and Registration Toolkit
Classes | Public Types | Public Member Functions | Static Public Member Functions | Static Public Attributes | Protected Member Functions | Private Member Functions | Private Attributes
itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage > Class Template Reference

Computes the Laplacian of Gaussian (LoG) of an image. More...

#include <itkLaplacianRecursiveGaussianImageFilter.h>

Inheritance diagram for itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >:
Collaboration diagram for itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >:

List of all members.

Classes

class  AddMultConstFunctor

Public Types

typedef CommandType::Pointer CommandPointer
typedef MemberCommand< SelfCommandType
typedef SmartPointer< const SelfConstPointer
typedef
DerivativeFilterType::Pointer 
DerivativeFilterPointer
typedef
RecursiveGaussianImageFilter
< InputImageType,
RealImageType
DerivativeFilterType
typedef GaussianFilterType::Pointer GaussianFilterPointer
typedef
RecursiveGaussianImageFilter
< RealImageType, RealImageType
GaussianFilterType
typedef TInputImage InputImageType
typedef float InternalRealType
typedef TOutputImage::Pointer OutputImagePointer
typedef TOutputImage OutputImageType
typedef OutputImageType::PixelType OutputPixelType
typedef InputImageType::PixelType PixelType
typedef SmartPointer< SelfPointer
typedef Image
< InternalRealType,
itkGetStaticConstMacro(ImageDimension) > 
RealImageType
typedef NumericTraits
< PixelType >::RealType 
RealType
typedef
LaplacianRecursiveGaussianImageFilter 
Self
typedef ImageToImageFilter
< TInputImage, TOutputImage > 
Superclass

Public Member Functions

virtual ::itk::LightObject::Pointer CreateAnother (void) const
virtual const char * GetNameOfClass () const
void SetSigma (RealType sigma)
void SetNormalizeAcrossScale (bool normalizeInScaleSpace)
virtual bool GetNormalizeAcrossScale () const

Static Public Member Functions

static Pointer New ()

Static Public Attributes

static const unsigned int ImageDimension = TInputImage::ImageDimension

Protected Member Functions

void EnlargeOutputRequestedRegion (DataObject *output)
void GenerateData (void)
 LaplacianRecursiveGaussianImageFilter ()
void PrintSelf (std::ostream &os, Indent indent) const
virtual ~LaplacianRecursiveGaussianImageFilter ()

Private Member Functions

 LaplacianRecursiveGaussianImageFilter (const Self &)
void operator= (const Self &)

Private Attributes

DerivativeFilterPointer m_DerivativeFilter
bool m_NormalizeAcrossScale
GaussianFilterPointer m_SmoothingFilters [ImageDimension-1]

Detailed Description

template<typename TInputImage, typename TOutputImage = TInputImage>
class itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >

Computes the Laplacian of Gaussian (LoG) of an image.

Computes the Laplacian of Gaussian (LoG) of an image by convolution with the second derivative of a Gaussian. This filter is implemented using the recursive gaussian filters.

Wiki Examples:

Definition at line 44 of file itkLaplacianRecursiveGaussianImageFilter.h.


Member Typedef Documentation

template<typename TInputImage , typename TOutputImage = TInputImage>
typedef CommandType::Pointer itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::CommandPointer

Definition at line 99 of file itkLaplacianRecursiveGaussianImageFilter.h.

template<typename TInputImage , typename TOutputImage = TInputImage>
typedef MemberCommand< Self > itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::CommandType

Command for observing progress of internal pipeline filters

Definition at line 98 of file itkLaplacianRecursiveGaussianImageFilter.h.

template<typename TInputImage , typename TOutputImage = TInputImage>
typedef SmartPointer< const Self > itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::ConstPointer
template<typename TInputImage , typename TOutputImage = TInputImage>
typedef DerivativeFilterType::Pointer itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::DerivativeFilterPointer

Pointer to a derivative filter.

Definition at line 87 of file itkLaplacianRecursiveGaussianImageFilter.h.

template<typename TInputImage , typename TOutputImage = TInputImage>
typedef RecursiveGaussianImageFilter< InputImageType, RealImageType > itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::DerivativeFilterType

Derivative filter type, it will be the first in the pipeline

Definition at line 81 of file itkLaplacianRecursiveGaussianImageFilter.h.

template<typename TInputImage , typename TOutputImage = TInputImage>
typedef GaussianFilterType::Pointer itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::GaussianFilterPointer

Pointer to a gaussian filter.

Definition at line 84 of file itkLaplacianRecursiveGaussianImageFilter.h.

template<typename TInputImage , typename TOutputImage = TInputImage>
typedef RecursiveGaussianImageFilter< RealImageType, RealImageType > itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::GaussianFilterType

Smoothing filter type

Definition at line 75 of file itkLaplacianRecursiveGaussianImageFilter.h.

template<typename TInputImage , typename TOutputImage = TInputImage>
typedef TInputImage itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::InputImageType

Pixel Type of the input image

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

Definition at line 55 of file itkLaplacianRecursiveGaussianImageFilter.h.

template<typename TInputImage , typename TOutputImage = TInputImage>
typedef float itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::InternalRealType

Define the image type for internal computations. RealType is usually 'double' in NumericTraits. Here we prefer float in order to save memory.

Definition at line 67 of file itkLaplacianRecursiveGaussianImageFilter.h.

template<typename TInputImage , typename TOutputImage = TInputImage>
typedef TOutputImage::Pointer itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::OutputImagePointer

Pointer to the Output Image

Reimplemented from itk::ImageSource< TOutputImage >.

Definition at line 90 of file itkLaplacianRecursiveGaussianImageFilter.h.

template<typename TInputImage , typename TOutputImage = TInputImage>
typedef TOutputImage itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::OutputImageType

Type of the output Image

Reimplemented from itk::ImageSource< TOutputImage >.

Definition at line 93 of file itkLaplacianRecursiveGaussianImageFilter.h.

template<typename TInputImage , typename TOutputImage = TInputImage>
typedef OutputImageType::PixelType itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::OutputPixelType

Definition at line 94 of file itkLaplacianRecursiveGaussianImageFilter.h.

template<typename TInputImage , typename TOutputImage = TInputImage>
typedef InputImageType::PixelType itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::PixelType

Definition at line 56 of file itkLaplacianRecursiveGaussianImageFilter.h.

template<typename TInputImage , typename TOutputImage = TInputImage>
typedef SmartPointer< Self > itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::Pointer
template<typename TInputImage , typename TOutputImage = TInputImage>
typedef Image< InternalRealType, itkGetStaticConstMacro(ImageDimension) > itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::RealImageType

Definition at line 69 of file itkLaplacianRecursiveGaussianImageFilter.h.

template<typename TInputImage , typename TOutputImage = TInputImage>
typedef NumericTraits< PixelType >::RealType itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::RealType

Definition at line 62 of file itkLaplacianRecursiveGaussianImageFilter.h.

template<typename TInputImage , typename TOutputImage = TInputImage>
typedef LaplacianRecursiveGaussianImageFilter itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::Self

Standard class typedefs.

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

Definition at line 49 of file itkLaplacianRecursiveGaussianImageFilter.h.

template<typename TInputImage , typename TOutputImage = TInputImage>
typedef ImageToImageFilter< TInputImage, TOutputImage > itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::Superclass

Constructor & Destructor Documentation

template<typename TInputImage , typename TOutputImage = TInputImage>
itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::LaplacianRecursiveGaussianImageFilter ( ) [protected]
template<typename TInputImage , typename TOutputImage = TInputImage>
virtual itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::~LaplacianRecursiveGaussianImageFilter ( ) [inline, protected, virtual]

Definition at line 120 of file itkLaplacianRecursiveGaussianImageFilter.h.

template<typename TInputImage , typename TOutputImage = TInputImage>
itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::LaplacianRecursiveGaussianImageFilter ( const Self ) [private]

Member Function Documentation

template<typename TInputImage , typename TOutputImage = TInputImage>
virtual::itk::LightObject::Pointer itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::CreateAnother ( void  ) const [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.

template<typename TInputImage , typename TOutputImage = TInputImage>
void itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::EnlargeOutputRequestedRegion ( DataObject ) [protected, virtual]

Give the process object a chance to indictate that it will produce more output than it was requested to produce. For example, many imaging filters must compute the entire output at once or can only produce output in complete slices. Such filters cannot handle smaller requested regions. These filters must provide an implementation of this method, setting the output requested region to the size they will produce. By default, a process object does not modify the size of the output requested region.

Reimplemented from itk::ProcessObject.

template<typename TInputImage , typename TOutputImage = TInputImage>
void itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::GenerateData ( void  ) [protected, virtual]

Generate Data

Reimplemented from itk::ImageSource< TOutputImage >.

template<typename TInputImage , typename TOutputImage = TInputImage>
virtual const char* itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::GetNameOfClass ( ) const [virtual]

Runtime information support.

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

template<typename TInputImage , typename TOutputImage = TInputImage>
virtual bool itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::GetNormalizeAcrossScale ( ) const [virtual]

Define which normalization factor will be used for the Gaussian

See also:
RecursiveGaussianImageFilter::SetNormalizeAcrossScale
template<typename TInputImage , typename TOutputImage = TInputImage>
static Pointer itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::New ( ) [static]

Method for creation through the object factory.

Reimplemented from itk::Object.

template<typename TInputImage , typename TOutputImage = TInputImage>
void itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::operator= ( const Self ) [private]

PushBackInput(), PushFronInput() in the public section force the input to be the type expected by an ImageToImageFilter. However, these methods end of "hiding" the versions from the superclass (ProcessObject) whose arguments are DataObjects. Here, we re-expose the versions from ProcessObject to avoid warnings about hiding methods from the superclass.

Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.

template<typename TInputImage , typename TOutputImage = TInputImage>
void itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::PrintSelf ( std::ostream &  os,
Indent  indent 
) const [protected, virtual]

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 >.

template<typename TInputImage , typename TOutputImage = TInputImage>
void itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::SetNormalizeAcrossScale ( bool  normalizeInScaleSpace)

Define which normalization factor will be used for the Gaussian

See also:
RecursiveGaussianImageFilter::SetNormalizeAcrossScale
template<typename TInputImage , typename TOutputImage = TInputImage>
void itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::SetSigma ( RealType  sigma)

Set Sigma value. Sigma is measured in the units of image spacing.


Member Data Documentation

template<typename TInputImage , typename TOutputImage = TInputImage>
const unsigned int itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::ImageDimension = TInputImage::ImageDimension [static]

Image dimension.

Definition at line 60 of file itkLaplacianRecursiveGaussianImageFilter.h.

template<typename TInputImage , typename TOutputImage = TInputImage>
DerivativeFilterPointer itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::m_DerivativeFilter [private]

Definition at line 158 of file itkLaplacianRecursiveGaussianImageFilter.h.

template<typename TInputImage , typename TOutputImage = TInputImage>
bool itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::m_NormalizeAcrossScale [private]

Normalize the image across scale space

Definition at line 161 of file itkLaplacianRecursiveGaussianImageFilter.h.

template<typename TInputImage , typename TOutputImage = TInputImage>
GaussianFilterPointer itk::LaplacianRecursiveGaussianImageFilter< TInputImage, TOutputImage >::m_SmoothingFilters[ImageDimension-1] [private]

Definition at line 157 of file itkLaplacianRecursiveGaussianImageFilter.h.


The documentation for this class was generated from the following file: