ITK
4.8.0
Insight Segmentation and Registration Toolkit
|
#include <itkDerivativeImageFilter.h>
Computes the directional derivative of an image. The directional derivative at each pixel location is computed by convolution with a derivative operator of user-specified order.
SetOrder specifies the order of the derivative.
SetDirection specifies the direction of the derivative with respect to the coordinate axes of the image.
Definition at line 48 of file itkDerivativeImageFilter.h.
Static Public Member Functions | |
static Pointer | New () |
Static Public Member Functions inherited from itk::Object | |
static bool | GetGlobalWarningDisplay () |
static void | GlobalWarningDisplayOff () |
static void | GlobalWarningDisplayOn () |
static Pointer | New () |
static void | SetGlobalWarningDisplay (bool flag) |
Static Public Member Functions inherited from itk::LightObject | |
static void | BreakOnError () |
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 > | |
static const unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
Private Member Functions | |
DerivativeImageFilter (const Self &) | |
void | operator= (const Self &) |
Private Attributes | |
unsigned int | m_Direction |
unsigned int | m_Order |
bool | m_UseImageSpacing |
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 |
Static Protected Member Functions inherited from itk::ImageSource< TOutputImage > | |
static const ImageRegionSplitterBase * | GetGlobalDefaultSplitter () |
static ITK_THREAD_RETURN_TYPE | ThreaderCallback (void *arg) |
Protected Attributes inherited from itk::ProcessObject | |
TimeStamp | m_OutputInformationMTime |
bool | m_Updating |
Protected Attributes inherited from itk::LightObject | |
AtomicInt< int > | m_ReferenceCount |
typedef SmartPointer< const Self > itk::DerivativeImageFilter< TInputImage, TOutputImage >::ConstPointer |
Definition at line 56 of file itkDerivativeImageFilter.h.
typedef TInputImage itk::DerivativeImageFilter< TInputImage, TOutputImage >::InputImageType |
Image typedef support.
Definition at line 71 of file itkDerivativeImageFilter.h.
typedef TInputImage::InternalPixelType itk::DerivativeImageFilter< TInputImage, TOutputImage >::InputInternalPixelType |
Definition at line 63 of file itkDerivativeImageFilter.h.
typedef TInputImage::PixelType itk::DerivativeImageFilter< TInputImage, TOutputImage >::InputPixelType |
Definition at line 62 of file itkDerivativeImageFilter.h.
typedef TOutputImage itk::DerivativeImageFilter< TInputImage, TOutputImage >::OutputImageType |
Definition at line 72 of file itkDerivativeImageFilter.h.
typedef TOutputImage::InternalPixelType itk::DerivativeImageFilter< TInputImage, TOutputImage >::OutputInternalPixelType |
Definition at line 61 of file itkDerivativeImageFilter.h.
typedef TOutputImage::PixelType itk::DerivativeImageFilter< TInputImage, TOutputImage >::OutputPixelType |
Extract some information from the image types. Dimensionality of the two images is assumed to be the same.
Definition at line 60 of file itkDerivativeImageFilter.h.
typedef SmartPointer< Self > itk::DerivativeImageFilter< TInputImage, TOutputImage >::Pointer |
Definition at line 55 of file itkDerivativeImageFilter.h.
typedef DerivativeImageFilter itk::DerivativeImageFilter< TInputImage, TOutputImage >::Self |
Standard class typedefs.
Definition at line 53 of file itkDerivativeImageFilter.h.
typedef ImageToImageFilter< TInputImage, TOutputImage > itk::DerivativeImageFilter< TInputImage, TOutputImage >::Superclass |
Definition at line 54 of file itkDerivativeImageFilter.h.
|
inlineprotected |
|
inlineprotectedvirtual |
Definition at line 128 of file itkDerivativeImageFilter.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.
|
overrideprotectedvirtual |
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 >.
|
overridevirtual |
DerivativeImageFilter needs a larger input requested region than the output requested region (larger in the direction of the derivative). As such, DerivativeImageFilter needs to provide an implementation for GenerateInputRequestedRegion() in order to inform the pipeline execution model.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
virtual |
Standard get/set macros for filter parameters.
|
virtual |
Run-time type information (and related methods).
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
virtual |
Standard get/set macros for filter parameters.
|
virtual |
Set/Get whether or not the filter will use the spacing of the input image in its calculations
|
static |
Method for creation through the object factory.
|
private |
|
overrideprotectedvirtual |
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 >.
|
virtual |
Standard get/set macros for filter parameters.
|
virtual |
Standard get/set macros for filter parameters.
|
virtual |
Set/Get whether or not the filter will use the spacing of the input image in its calculations
Referenced by itk::DerivativeImageFilter< TInputImage, TOutputImage >::SetUseImageSpacingOff(), and itk::DerivativeImageFilter< TInputImage, TOutputImage >::SetUseImageSpacingOn().
|
inline |
Ignore the image spacing. Use this option if you want derivatives in isotropic pixel space. Default is UseImageSpacingOn.
Definition at line 102 of file itkDerivativeImageFilter.h.
References itk::DerivativeImageFilter< TInputImage, TOutputImage >::SetUseImageSpacing().
|
inline |
Use the image spacing information in calculations. Use this option if you want derivatives in physical space. Default is UseImageSpacingOn.
Definition at line 97 of file itkDerivativeImageFilter.h.
References itk::DerivativeImageFilter< TInputImage, TOutputImage >::SetUseImageSpacing().
itk::DerivativeImageFilter< TInputImage, TOutputImage >::typedef | ( | Concept::Signed< OutputPixelType > | ) |
The output pixel type must be signed. This class requires SignedOutputPixelType in the form of ( Concept::Signed< OutputPixelType > )
|
static |
Extract some information from the image types. Dimensionality of the two images is assumed to be the same.
Definition at line 68 of file itkDerivativeImageFilter.h.
|
private |
The direction of the derivative.
Definition at line 146 of file itkDerivativeImageFilter.h.
Referenced by itk::DerivativeImageFilter< TInputImage, TOutputImage >::DerivativeImageFilter().
|
private |
The order of the derivative.
Definition at line 143 of file itkDerivativeImageFilter.h.
Referenced by itk::DerivativeImageFilter< TInputImage, TOutputImage >::DerivativeImageFilter().
|
private |
Definition at line 148 of file itkDerivativeImageFilter.h.
Referenced by itk::DerivativeImageFilter< TInputImage, TOutputImage >::DerivativeImageFilter().