ITK
4.8.0
Insight Segmentation and Registration Toolkit
|
#include <itkCannyEdgeDetectionRecursiveGaussianImageFilter.h>
This filter is an implementation of a Canny edge detector for scalar-valued images. Based on John Canny's paper "A Computational Approach to Edge Detection"(IEEE Transactions on Pattern Analysis and Machine Intelligence, Vol. PAMI-8, No.6, November 1986), there are four major steps used in the edge-detection scheme: (1) Smooth the input image with Gaussian filter. (2) Calculate the second directional derivatives of the smoothed image. (3) Non-Maximum Suppression: the zero-crossings of 2nd derivative are found, and the sign of third derivative is used to find the correct extrema. (4) The hysteresis thresholding is applied to the gradient magnitude (multiplied with zero-crossings) of the smoothed image to find and link edges.
Definition at line 92 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
Classes | |
struct | CannyThreadStruct |
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 = TInputImage::ImageDimension |
static const unsigned int | OutputImageDimension = 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 |
Protected Types | |
typedef MultiplyImageFilter < OutputImageType, OutputImageType, OutputImageType > | MultiplyImageFilterType |
Protected Types inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
typedef ImageToImageFilterDetail::ImageRegionCopier < itkGetStaticConstMacro(OutputImageDimension), itkGetStaticConstMacro(InputImageDimension) > | InputToOutputRegionCopierType |
typedef ImageToImageFilterDetail::ImageRegionCopier < itkGetStaticConstMacro(InputImageDimension), itkGetStaticConstMacro(OutputImageDimension) > | OutputToInputRegionCopierType |
Private Member Functions | |
void | AllocateUpdateBuffer () |
void | Compute2ndDerivative () |
void | Compute2ndDerivativePos () |
OutputImagePixelType | ComputeCannyEdge (const NeighborhoodType &it, void *globalData) |
void | FollowEdge (IndexType index) |
void | HysteresisThresholding () |
bool | InBounds (IndexType index) |
void | ThreadedCompute2ndDerivative (const OutputImageRegionType &outputRegionForThread, int threadId) |
void | ThreadedCompute2ndDerivativePos (const OutputImageRegionType &outputRegionForThread, int threadId) |
virtual | ~CannyEdgeDetectionRecursiveGaussianImageFilter () |
Static Private Member Functions | |
static ITK_THREAD_RETURN_TYPE | Compute2ndDerivativePosThreaderCallback (void *arg) |
static ITK_THREAD_RETURN_TYPE | Compute2ndDerivativeThreaderCallback (void *arg) |
Private Attributes | |
unsigned long | m_Center |
std::slice | m_ComputeCannyEdgeSlice [ImageDimension] |
GaussianImageFilterType::Pointer | m_GaussianFilter |
OutputImagePixelType | m_LowerThreshold |
ArrayType | m_MaximumError |
MultiplyImageFilterType::Pointer | m_MultiplyImageFilter |
ListPointerType | m_NodeList |
ListNodeStorageType::Pointer | m_NodeStore |
OutputImagePixelType | m_OutsideValue |
SigmaArrayType | m_Sigma |
unsigned long | m_Stride [ImageDimension] |
OutputImagePixelType | m_Threshold |
OutputImageType::Pointer | m_UpdateBuffer1 |
OutputImagePixelType | m_UpperThreshold |
DerivativeOperator < OutputImagePixelType, itkGetStaticConstMacro(ImageDimension)> | m_ComputeCannyEdge1stDerivativeOper |
DerivativeOperator < OutputImagePixelType, itkGetStaticConstMacro(ImageDimension)> | m_ComputeCannyEdge2ndDerivativeOper |
Additional Inherited Members | |
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 FixedArray<double, itkGetStaticConstMacro(ImageDimension)> itk::CannyEdgeDetectionRecursiveGaussianImageFilter< TInputImage, TOutputImage >::ArrayType |
Typedef of double containers
Definition at line 151 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
typedef SmartPointer<const Self> itk::CannyEdgeDetectionRecursiveGaussianImageFilter< TInputImage, TOutputImage >::ConstPointer |
Definition at line 106 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
typedef ZeroFluxNeumannBoundaryCondition<OutputImageType> itk::CannyEdgeDetectionRecursiveGaussianImageFilter< TInputImage, TOutputImage >::DefaultBoundaryConditionType |
The default boundary condition is used unless overridden in the Evaluate() method.
Definition at line 121 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
typedef SmoothingRecursiveGaussianImageFilter< InputImageType, OutputImageType> itk::CannyEdgeDetectionRecursiveGaussianImageFilter< TInputImage, TOutputImage >::GaussianImageFilterType |
Definition at line 114 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
typedef TInputImage::IndexType itk::CannyEdgeDetectionRecursiveGaussianImageFilter< TInputImage, TOutputImage >::IndexType |
Definition at line 111 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
typedef TInputImage::PixelType itk::CannyEdgeDetectionRecursiveGaussianImageFilter< TInputImage, TOutputImage >::InputImagePixelType |
Define pixel types.
Definition at line 109 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
typedef TInputImage itk::CannyEdgeDetectionRecursiveGaussianImageFilter< TInputImage, TOutputImage >::InputImageType |
Image typedef support
Definition at line 101 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
typedef ObjectStore<ListNodeType> itk::CannyEdgeDetectionRecursiveGaussianImageFilter< TInputImage, TOutputImage >::ListNodeStorageType |
Definition at line 130 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
typedef ListNode<IndexType> itk::CannyEdgeDetectionRecursiveGaussianImageFilter< TInputImage, TOutputImage >::ListNodeType |
Definition at line 129 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
typedef ListType::Pointer itk::CannyEdgeDetectionRecursiveGaussianImageFilter< TInputImage, TOutputImage >::ListPointerType |
Definition at line 132 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
typedef SparseFieldLayer<ListNodeType> itk::CannyEdgeDetectionRecursiveGaussianImageFilter< TInputImage, TOutputImage >::ListType |
Definition at line 131 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
|
protected |
Definition at line 224 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
typedef ConstNeighborhoodIterator<OutputImageType, DefaultBoundaryConditionType> itk::CannyEdgeDetectionRecursiveGaussianImageFilter< TInputImage, TOutputImage >::NeighborhoodType |
The type of data structure that is passed to this function object to evaluate at a pixel that does not lie on a data set boundary.
Definition at line 127 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
typedef TOutputImage::PixelType itk::CannyEdgeDetectionRecursiveGaussianImageFilter< TInputImage, TOutputImage >::OutputImagePixelType |
Definition at line 110 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
typedef TOutputImage::RegionType itk::CannyEdgeDetectionRecursiveGaussianImageFilter< TInputImage, TOutputImage >::OutputImageRegionType |
Typedef to describe the output image region type.
Definition at line 135 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
typedef TOutputImage itk::CannyEdgeDetectionRecursiveGaussianImageFilter< TInputImage, TOutputImage >::OutputImageType |
Definition at line 102 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
typedef SmartPointer<Self> itk::CannyEdgeDetectionRecursiveGaussianImageFilter< TInputImage, TOutputImage >::Pointer |
SmartPointer typedef support
Definition at line 105 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
typedef GaussianImageFilterType::ScalarRealType itk::CannyEdgeDetectionRecursiveGaussianImageFilter< TInputImage, TOutputImage >::ScalarRealType |
Definition at line 115 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
typedef CannyEdgeDetectionRecursiveGaussianImageFilter itk::CannyEdgeDetectionRecursiveGaussianImageFilter< TInputImage, TOutputImage >::Self |
Standard "Self" & Superclass typedef.
Definition at line 97 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
typedef GaussianImageFilterType::SigmaArrayType itk::CannyEdgeDetectionRecursiveGaussianImageFilter< TInputImage, TOutputImage >::SigmaArrayType |
Definition at line 116 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
typedef ImageToImageFilter<TInputImage, TOutputImage> itk::CannyEdgeDetectionRecursiveGaussianImageFilter< TInputImage, TOutputImage >::Superclass |
Definition at line 98 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
|
protected |
End concept checking
|
inlineprotected |
Definition at line 218 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
|
inlineprivatevirtual |
Definition at line 227 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
|
private |
This allocate storage for m_UpdateBuffer, m_UpdateBuffer1
|
private |
Calculate the second derivative of the smoothed image, it writes the result to m_UpdateBuffer using the ThreadedCompute2ndDerivative() method and multithreading mechanism.
|
private |
Calculate the gradient of the second derivative of the smoothed image, it writes the result to m_UpdateBuffer1 using the ThreadedCompute2ndDerivativePos() method and multithreading mechanism.
|
staticprivate |
This callback method uses ImageSource::SplitRequestedRegion to acquire an output region that it passes to ThreadedCompute2ndDerivative for processing.
|
staticprivate |
This callback method uses ImageSource::SplitRequestedRegion to acquire an output region that it passes to ThreadedCompute2ndDerivative for processing.
|
private |
This methos is used to calculate the 2nd derivative for non-boundary pixels. It is called by the ThreadedCompute2ndDerivative method.
|
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.
|
private |
Edge linking funciton
|
protectedvirtual |
A version of GenerateData() specific for image processing filters. This implementation will split the processing across multiple threads. The buffer is allocated by this method. Then the BeforeThreadedGenerateData() method is called (if provided). Then, a series of threads are spawned each calling ThreadedGenerateData(). After all the threads have completed processing, the AfterThreadedGenerateData() method is called (if provided). If an image processing filter cannot be threaded, the filter should provide an implementation of GenerateData(). That implementation is responsible for allocating the output buffer. If a filter an be threaded, it should NOT provide a GenerateData() method but should provide a ThreadedGenerateData() instead.
Reimplemented from itk::ImageSource< TOutputImage >.
|
virtual |
CannyEdgeDetectionRecursiveGaussianImageFilter needs a larger input requested region than the output requested region ( derivative operators, etc). As such, CannyEdgeDetectionRecursiveGaussianImageFilter needs to provide an implementation for GenerateInputRequestedRegion() in order to inform the pipeline execution model.
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
virtual |
|
virtual |
Run-time type information (and related methods).
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
inline |
Definition at line 186 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
|
virtual |
ScalarRealType itk::CannyEdgeDetectionRecursiveGaussianImageFilter< TInputImage, TOutputImage >::GetSigma | ( | ) | const |
Smoothing parameters for the Gaussian filter.
SigmaArrayType itk::CannyEdgeDetectionRecursiveGaussianImageFilter< TInputImage, TOutputImage >::GetSigmaArray | ( | ) | const |
Smoothing parameters for the Gaussian filter.
|
inline |
Definition at line 169 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
|
virtual |
|
private |
Implement hysteresis thresholding
|
private |
Check if the index is in bounds or not
|
static |
Method for creation through the object factory.
|
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 >.
|
virtual |
|
virtual |
void itk::CannyEdgeDetectionRecursiveGaussianImageFilter< TInputImage, TOutputImage >::SetSigma | ( | ScalarRealType | sigma | ) |
Smoothing parameters for the Gaussian filter.
void itk::CannyEdgeDetectionRecursiveGaussianImageFilter< TInputImage, TOutputImage >::SetSigmaArray | ( | const SigmaArrayType & | sigmas | ) |
Smoothing parameters for the Gaussian filter.
|
inline |
Definition at line 161 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
|
virtual |
|
private |
Split the input into "num" pieces, returning region "i" as "splitRegion". This method is called "num" times to return non-overlapping regions. The method returns the number of pieces that the input can be split into by the routine. i.e. return value is less than or equal to "num".
|
private |
Does the actual work of calculating of the 2nd derivative over a region supplied by the multithreading mechanism.
itk::CannyEdgeDetectionRecursiveGaussianImageFilter< TInputImage, TOutputImage >::typedef | ( | Concept::HasNumericTraits< InputImagePixelType > | ) |
Begin concept checking This class requires InputHasNumericTraitsCheck in the form of (Concept::HasNumericTraits<InputImagePixelType>)
itk::CannyEdgeDetectionRecursiveGaussianImageFilter< TInputImage, TOutputImage >::typedef | ( | Concept::HasNumericTraits< OutputImagePixelType > | ) |
This class requires OutputHasNumericTraitsCheck in the form of (Concept::HasNumericTraits<OutputImagePixelType>)
itk::CannyEdgeDetectionRecursiveGaussianImageFilter< TInputImage, TOutputImage >::typedef | ( | Concept::SameDimension< ImageDimension, OutputImageDimension > | ) |
This class requires SameDimensionCheck in the form of (Concept::SameDimension<ImageDimension, OutputImageDimension>)
itk::CannyEdgeDetectionRecursiveGaussianImageFilter< TInputImage, TOutputImage >::typedef | ( | Concept::IsFloatingPoint< InputImagePixelType > | ) |
This class requires InputIsFloatingPointCheck in the form of (Concept::IsFloatingPoint<InputImagePixelType>)
itk::CannyEdgeDetectionRecursiveGaussianImageFilter< TInputImage, TOutputImage >::typedef | ( | Concept::IsFloatingPoint< OutputImagePixelType > | ) |
This class requires OutputIsFloatingPointCheck in the form of (Concept::IsFloatingPoint<OutputImagePixelType>)
|
static |
ImageDimension constant
Definition at line 145 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
|
private |
Definition at line 344 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
|
private |
Function objects that are used in the inner loops of derivatiVex calculations.
Definition at line 336 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
|
private |
Function objects that are used in the inner loops of derivatiVex calculations.
Definition at line 338 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
|
private |
Definition at line 341 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
|
private |
Gaussian filter to smooth the input image
Definition at line 327 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
|
private |
Lower threshold value for identifying edges.
Definition at line 315 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
|
private |
The maximum error of the gaussian blurring kernel in each dimensional direction.
Definition at line 309 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
|
private |
Multiply image filter to multiply with the zero crossings of the second derivative.
Definition at line 331 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
|
private |
Definition at line 347 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
|
private |
Definition at line 346 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
|
private |
"Background" value for use in thresholding.
Definition at line 321 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
|
private |
Standard deviation of the gaussian used for smoothing
Definition at line 305 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
|
private |
Definition at line 343 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
|
private |
Threshold value for identifying edges.
Definition at line 318 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
|
private |
Update buffers used during calculation of multiple steps
Definition at line 324 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
|
private |
Upper threshold value for identifying edges.
Definition at line 312 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.
|
static |
ImageDimension constant
Definition at line 147 of file itkCannyEdgeDetectionRecursiveGaussianImageFilter.h.