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

This filter sharpens an image using a Laplacian. LaplacianSharpening highlights regions of rapid intensity change and therefore highlights or enhances the edges. The result is an image that appears more in focus. More...

#include <itkLaplacianSharpeningImageFilter.h>

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

List of all members.

Public Types

typedef SmartPointer< const SelfConstPointer
typedef InputImageType::Pointer InputImagePointer
typedef TInputImage InputImageType
typedef
TInputImage::InternalPixelType 
InputInternalPixelType
typedef TInputImage::PixelType InputPixelType
typedef TOutputImage OutputImageType
typedef
TOutputImage::InternalPixelType 
OutputInternalPixelType
typedef TOutputImage::PixelType OutputPixelType
typedef SmartPointer< SelfPointer
typedef NumericTraits
< OutputPixelType >::RealType 
RealType
typedef
LaplacianSharpeningImageFilter 
Self
typedef ImageToImageFilter
< TInputImage, TOutputImage > 
Superclass

Public Member Functions

virtual ::itk::LightObject::Pointer CreateAnother (void) const
virtual void GenerateInputRequestedRegion () throw ( InvalidRequestedRegionError )
virtual const char * GetNameOfClass () const
virtual void UseImageSpacingOff ()
virtual void UseImageSpacingOn ()
virtual void SetUseImageSpacing (bool _arg)
virtual bool GetUseImageSpacing () const

Static Public Member Functions

static Pointer New ()

Static Public Attributes

static const unsigned int ImageDimension = TOutputImage::ImageDimension

Protected Member Functions

void GenerateData ()
 LaplacianSharpeningImageFilter ()
void PrintSelf (std::ostream &, Indent) const
virtual ~LaplacianSharpeningImageFilter ()

Private Member Functions

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

Private Attributes

bool m_UseImageSpacing

Detailed Description

template<class TInputImage, class TOutputImage>
class itk::LaplacianSharpeningImageFilter< TInputImage, TOutputImage >

This filter sharpens an image using a Laplacian. LaplacianSharpening highlights regions of rapid intensity change and therefore highlights or enhances the edges. The result is an image that appears more in focus.

The LaplacianSharpening at each pixel location is computed by
convolution with the itk::LaplacianOperator.
Inputs and Outputs
The input to this filter is a scalar-valued itk::Image of arbitrary dimension. The output is a scalar-valued itk::Image.
See also:
Image
Neighborhood
NeighborhoodOperator
NeighborhoodIterator
LaplacianOperator
Wiki Examples:

Definition at line 53 of file itkLaplacianSharpeningImageFilter.h.


Member Typedef Documentation

template<class TInputImage , class TOutputImage >
typedef SmartPointer< const Self > itk::LaplacianSharpeningImageFilter< TInputImage, TOutputImage >::ConstPointer
template<class TInputImage , class TOutputImage >
typedef InputImageType::Pointer itk::LaplacianSharpeningImageFilter< TInputImage, TOutputImage >::InputImagePointer
template<class TInputImage , class TOutputImage >
typedef TInputImage itk::LaplacianSharpeningImageFilter< TInputImage, TOutputImage >::InputImageType

Image typedef support.

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

Definition at line 73 of file itkLaplacianSharpeningImageFilter.h.

template<class TInputImage , class TOutputImage >
typedef TInputImage::InternalPixelType itk::LaplacianSharpeningImageFilter< TInputImage, TOutputImage >::InputInternalPixelType

Definition at line 68 of file itkLaplacianSharpeningImageFilter.h.

template<class TInputImage , class TOutputImage >
typedef TInputImage::PixelType itk::LaplacianSharpeningImageFilter< TInputImage, TOutputImage >::InputPixelType

Definition at line 67 of file itkLaplacianSharpeningImageFilter.h.

template<class TInputImage , class TOutputImage >
typedef TOutputImage itk::LaplacianSharpeningImageFilter< TInputImage, TOutputImage >::OutputImageType

Some convenient typedefs.

Reimplemented from itk::ImageSource< TOutputImage >.

Definition at line 74 of file itkLaplacianSharpeningImageFilter.h.

template<class TInputImage , class TOutputImage >
typedef TOutputImage::InternalPixelType itk::LaplacianSharpeningImageFilter< TInputImage, TOutputImage >::OutputInternalPixelType

Definition at line 65 of file itkLaplacianSharpeningImageFilter.h.

template<class TInputImage , class TOutputImage >
typedef TOutputImage::PixelType itk::LaplacianSharpeningImageFilter< TInputImage, TOutputImage >::OutputPixelType

Extract some information from the image types. Dimensionality of the two images is assumed to be the same.

Definition at line 64 of file itkLaplacianSharpeningImageFilter.h.

template<class TInputImage , class TOutputImage >
typedef SmartPointer< Self > itk::LaplacianSharpeningImageFilter< TInputImage, TOutputImage >::Pointer

Smart pointer typedef support.

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

Definition at line 78 of file itkLaplacianSharpeningImageFilter.h.

template<class TInputImage , class TOutputImage >
typedef NumericTraits< OutputPixelType >::RealType itk::LaplacianSharpeningImageFilter< TInputImage, TOutputImage >::RealType

Definition at line 66 of file itkLaplacianSharpeningImageFilter.h.

template<class TInputImage , class TOutputImage >
typedef LaplacianSharpeningImageFilter itk::LaplacianSharpeningImageFilter< TInputImage, TOutputImage >::Self

Standard "Self" & Superclass typedef.

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

Definition at line 59 of file itkLaplacianSharpeningImageFilter.h.

template<class TInputImage , class TOutputImage >
typedef ImageToImageFilter< TInputImage, TOutputImage > itk::LaplacianSharpeningImageFilter< TInputImage, TOutputImage >::Superclass

Constructor & Destructor Documentation

template<class TInputImage , class TOutputImage >
itk::LaplacianSharpeningImageFilter< TInputImage, TOutputImage >::LaplacianSharpeningImageFilter ( ) [inline, protected]

Definition at line 110 of file itkLaplacianSharpeningImageFilter.h.

template<class TInputImage , class TOutputImage >
virtual itk::LaplacianSharpeningImageFilter< TInputImage, TOutputImage >::~LaplacianSharpeningImageFilter ( ) [inline, protected, virtual]

Definition at line 115 of file itkLaplacianSharpeningImageFilter.h.

template<class TInputImage , class TOutputImage >
itk::LaplacianSharpeningImageFilter< TInputImage, TOutputImage >::LaplacianSharpeningImageFilter ( const Self ) [private]

Member Function Documentation

template<class TInputImage , class TOutputImage >
virtual::itk::LightObject::Pointer itk::LaplacianSharpeningImageFilter< 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<class TInputImage , class TOutputImage >
void itk::LaplacianSharpeningImageFilter< TInputImage, TOutputImage >::GenerateData ( ) [protected, virtual]

Standard pipeline method. While this class does not implement a ThreadedGenerateData(), its GenerateData() delegates all calculations to an NeighborhoodOperatorImageFilter. Since the NeighborhoodOperatorImageFilter is multithreaded, this filter is multithreaded by default.

Reimplemented from itk::ImageSource< TOutputImage >.

template<class TInputImage , class TOutputImage >
virtual void itk::LaplacianSharpeningImageFilter< TInputImage, TOutputImage >::GenerateInputRequestedRegion ( ) throw ( InvalidRequestedRegionError ) [virtual]

LaplacianSharpeningImageFilter needs a larger input requested region than the output requested region (larger in the direction of the derivative). As such, LaplacianSharpeningImageFilter needs to provide an implementation for GenerateInputRequestedRegion() in order to inform the pipeline execution model.

See also:
ImageToImageFilter::GenerateInputRequestedRegion()

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

template<class TInputImage , class TOutputImage >
virtual const char* itk::LaplacianSharpeningImageFilter< TInputImage, TOutputImage >::GetNameOfClass ( ) const [virtual]

Run-time type information (and related methods)

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

template<class TInputImage , class TOutputImage >
virtual bool itk::LaplacianSharpeningImageFilter< TInputImage, TOutputImage >::GetUseImageSpacing ( ) const [virtual]

Set/Get whether or not the filter will use the spacing of the input image in its calculations

template<class TInputImage , class TOutputImage >
static Pointer itk::LaplacianSharpeningImageFilter< TInputImage, TOutputImage >::New ( ) [static]

Method for creation through the object factory.

Reimplemented from itk::Object.

template<class TInputImage , class TOutputImage >
void itk::LaplacianSharpeningImageFilter< 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<class TInputImage , class TOutputImage >
void itk::LaplacianSharpeningImageFilter< 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<class TInputImage , class TOutputImage >
virtual void itk::LaplacianSharpeningImageFilter< TInputImage, TOutputImage >::SetUseImageSpacing ( bool  _arg) [virtual]

Set/Get whether or not the filter will use the spacing of the input image in its calculations

template<class TInputImage , class TOutputImage >
virtual void itk::LaplacianSharpeningImageFilter< TInputImage, TOutputImage >::UseImageSpacingOff ( ) [virtual]
template<class TInputImage , class TOutputImage >
virtual void itk::LaplacianSharpeningImageFilter< TInputImage, TOutputImage >::UseImageSpacingOn ( ) [virtual]

Enable/Disable using the image spacing information in calculations. Use this option if you want derivatives in physical space. Default is UseImageSpacingOn.


Member Data Documentation

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

Definition at line 70 of file itkLaplacianSharpeningImageFilter.h.

template<class TInputImage , class TOutputImage >
bool itk::LaplacianSharpeningImageFilter< TInputImage, TOutputImage >::m_UseImageSpacing [private]

Definition at line 129 of file itkLaplacianSharpeningImageFilter.h.


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