#include <itkCannyEdgeDetectionImageFilter.h>
This filter is an implementation of a Canny edge detector for scalar-valued images.
Based on John Canny's paper [19] 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 86 of file itkCannyEdgeDetectionImageFilter.h.
Static Public Member Functions | |
static Pointer | New () |
![]() | |
static double | GetGlobalDefaultCoordinateTolerance () |
static double | GetGlobalDefaultDirectionTolerance () |
static void | SetGlobalDefaultCoordinateTolerance (double) |
static void | SetGlobalDefaultDirectionTolerance (double) |
![]() | |
static bool | GetGlobalWarningDisplay () |
static void | GlobalWarningDisplayOff () |
static void | GlobalWarningDisplayOn () |
static Pointer | New () |
static void | SetGlobalWarningDisplay (bool val) |
![]() | |
static void | BreakOnError () |
static Pointer | New () |
Static Public Attributes | |
static constexpr unsigned int | ImageDimension = TInputImage::ImageDimension |
static constexpr unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
![]() | |
static constexpr unsigned int | InputImageDimension = TInputImage::ImageDimension |
static constexpr unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
![]() | |
static constexpr unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
Protected Types | |
using | GaussianImageFilterType = DiscreteGaussianImageFilter<InputImageType, OutputImageType> |
using | MultiplyImageFilterType = MultiplyImageFilter<OutputImageType, OutputImageType, OutputImageType> |
![]() | |
using | InputToOutputRegionCopierType |
using | OutputToInputRegionCopierType |
Private Member Functions | |
void | AllocateUpdateBuffer () |
OutputImagePixelType | ComputeCannyEdge (const NeighborhoodType &it, void *globalData) |
void | FollowEdge (IndexType index, const OutputImageType *multiplyImageFilterOutput) |
void | HysteresisThresholding () |
void | ThreadedCompute2ndDerivative (const OutputImageRegionType &outputRegionForThread) |
void | ThreadedCompute2ndDerivativePos (const OutputImageRegionType &outputRegionForThread) |
~CannyEdgeDetectionImageFilter () override=default | |
Additional Inherited Members | |
![]() | |
static const ImageRegionSplitterBase * | GetGlobalDefaultSplitter () |
static ITK_THREAD_RETURN_FUNCTION_CALL_CONVENTION | ThreaderCallback (void *arg) |
![]() | |
template<typename TSourceObject> | |
static void | MakeRequiredOutputs (TSourceObject &sourceObject, const DataObjectPointerArraySizeType numberOfRequiredOutputs) |
static constexpr float | progressFixedToFloat (uint32_t fixed) |
static uint32_t | progressFloatToFixed (float f) |
![]() | |
bool | m_DynamicMultiThreading { true } |
![]() | |
TimeStamp | m_OutputInformationMTime {} |
bool | m_Updating {} |
![]() | |
std::atomic< int > | m_ReferenceCount {} |
using itk::CannyEdgeDetectionImageFilter< TInputImage, TOutputImage >::ArrayType = FixedArray<double, Self::ImageDimension> |
Typedef of double containers.
Definition at line 138 of file itkCannyEdgeDetectionImageFilter.h.
using itk::CannyEdgeDetectionImageFilter< TInputImage, TOutputImage >::ConstPointer = SmartPointer<const Self> |
Definition at line 101 of file itkCannyEdgeDetectionImageFilter.h.
using itk::CannyEdgeDetectionImageFilter< TInputImage, TOutputImage >::DefaultBoundaryConditionType = ZeroFluxNeumannBoundaryCondition<OutputImageType> |
The default boundary condition is used unless overridden in the Evaluate() method.
Definition at line 111 of file itkCannyEdgeDetectionImageFilter.h.
|
protected |
Definition at line 214 of file itkCannyEdgeDetectionImageFilter.h.
using itk::CannyEdgeDetectionImageFilter< TInputImage, TOutputImage >::IndexType = typename TInputImage::IndexType |
Definition at line 106 of file itkCannyEdgeDetectionImageFilter.h.
using itk::CannyEdgeDetectionImageFilter< TInputImage, TOutputImage >::InputImagePixelType = typename TInputImage::PixelType |
Define pixel types.
Definition at line 104 of file itkCannyEdgeDetectionImageFilter.h.
using itk::CannyEdgeDetectionImageFilter< TInputImage, TOutputImage >::InputImageRegionType = typename TInputImage::RegionType |
Definition at line 128 of file itkCannyEdgeDetectionImageFilter.h.
using itk::CannyEdgeDetectionImageFilter< TInputImage, TOutputImage >::InputImageType = TInputImage |
Image type alias support
Definition at line 96 of file itkCannyEdgeDetectionImageFilter.h.
using itk::CannyEdgeDetectionImageFilter< TInputImage, TOutputImage >::ListNodeStorageType = ObjectStore<ListNodeType> |
Definition at line 119 of file itkCannyEdgeDetectionImageFilter.h.
using itk::CannyEdgeDetectionImageFilter< TInputImage, TOutputImage >::ListNodeType = ListNode<IndexType> |
Definition at line 118 of file itkCannyEdgeDetectionImageFilter.h.
using itk::CannyEdgeDetectionImageFilter< TInputImage, TOutputImage >::ListPointerType = typename ListType::Pointer |
Definition at line 121 of file itkCannyEdgeDetectionImageFilter.h.
using itk::CannyEdgeDetectionImageFilter< TInputImage, TOutputImage >::ListType = SparseFieldLayer<ListNodeType> |
Definition at line 120 of file itkCannyEdgeDetectionImageFilter.h.
|
protected |
Definition at line 215 of file itkCannyEdgeDetectionImageFilter.h.
using itk::CannyEdgeDetectionImageFilter< TInputImage, TOutputImage >::NeighborhoodType = ConstNeighborhoodIterator<OutputImageType, DefaultBoundaryConditionType> |
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 116 of file itkCannyEdgeDetectionImageFilter.h.
using itk::CannyEdgeDetectionImageFilter< TInputImage, TOutputImage >::OutputImagePixelType = typename TOutputImage::PixelType |
Definition at line 105 of file itkCannyEdgeDetectionImageFilter.h.
using itk::CannyEdgeDetectionImageFilter< TInputImage, TOutputImage >::OutputImageRegionType = typename TOutputImage::RegionType |
Typedef to describe the output image region type.
Definition at line 127 of file itkCannyEdgeDetectionImageFilter.h.
using itk::CannyEdgeDetectionImageFilter< TInputImage, TOutputImage >::OutputImageType = TOutputImage |
Definition at line 97 of file itkCannyEdgeDetectionImageFilter.h.
using itk::CannyEdgeDetectionImageFilter< TInputImage, TOutputImage >::Pointer = SmartPointer<Self> |
SmartPointer type alias support
Definition at line 100 of file itkCannyEdgeDetectionImageFilter.h.
using itk::CannyEdgeDetectionImageFilter< TInputImage, TOutputImage >::Self = CannyEdgeDetectionImageFilter |
Standard "Self" & Superclass type alias.
Definition at line 92 of file itkCannyEdgeDetectionImageFilter.h.
using itk::CannyEdgeDetectionImageFilter< TInputImage, TOutputImage >::SizeValueType = typename TInputImage::SizeValueType |
Definition at line 107 of file itkCannyEdgeDetectionImageFilter.h.
using itk::CannyEdgeDetectionImageFilter< TInputImage, TOutputImage >::Superclass = ImageToImageFilter<TInputImage, TOutputImage> |
Definition at line 93 of file itkCannyEdgeDetectionImageFilter.h.
|
protected |
Referenced by GetNameOfClass().
|
overrideprivatedefault |
|
private |
Allocate storage for update buffers used during calculation of multiple steps.
|
private |
This method 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::LightObject.
|
private |
Edge linking function.
|
overrideprotectedvirtual |
This method causes the filter to generate its output.
Reimplemented from itk::ProcessObject.
|
virtual |
|
virtual |
Set/Get the maximum error of the Gaussian smoothing kernel in each dimensional direction.
|
overridevirtual |
Reimplemented from itk::LightObject.
References CannyEdgeDetectionImageFilter().
|
inline |
Definition at line 195 of file itkCannyEdgeDetectionImageFilter.h.
References m_MultiplyImageFilter.
|
virtual |
|
virtual |
Set/Get the variance of the Gaussian smoothing filter.
|
private |
Implement hysteresis thresholding.
|
static |
Method for creation through the object factory.
Referenced by itk::CannySegmentationLevelSetFunction< OutputImageType, FeatureImageType >::CannySegmentationLevelSetFunction().
|
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::LightObject.
|
virtual |
Set the lower threshold value for detected edges.
|
virtual |
Set/Get the maximum error of the Gaussian smoothing kernel in each dimensional direction.
|
inline |
Set/Get the MaximumError parameter used by the Gaussian smoothing filter in this algorithm
Definition at line 171 of file itkCannyEdgeDetectionImageFilter.h.
References m_MaximumError, itk::Object::Modified(), and itk::Math::NotExactlyEquals().
|
virtual |
Set the upper threshold value for detected edges.
|
virtual |
Set/Get the variance of the Gaussian smoothing filter.
|
inline |
Set/Get the variance of the Gaussian smoothing filter.
Definition at line 155 of file itkCannyEdgeDetectionImageFilter.h.
References m_Variance, itk::Object::Modified(), and itk::Math::NotExactlyEquals().
|
private |
Calculate the second derivative of the smoothed image, it writes the result to the update buffer
|
private |
Calculate the gradient of the second derivative of the smoothed image, it writes the result to m_UpdateBuffer1
|
staticconstexpr |
ImageDimension constant.
Definition at line 134 of file itkCannyEdgeDetectionImageFilter.h.
|
private |
Definition at line 272 of file itkCannyEdgeDetectionImageFilter.h.
|
private |
Function objects that are used in the inner loops of derivative calculations.
Definition at line 266 of file itkCannyEdgeDetectionImageFilter.h.
|
private |
Definition at line 267 of file itkCannyEdgeDetectionImageFilter.h.
|
private |
Definition at line 269 of file itkCannyEdgeDetectionImageFilter.h.
|
private |
Gaussian filter to smooth the input image.
Definition at line 258 of file itkCannyEdgeDetectionImageFilter.h.
|
private |
Definition at line 253 of file itkCannyEdgeDetectionImageFilter.h.
|
private |
Definition at line 250 of file itkCannyEdgeDetectionImageFilter.h.
Referenced by SetMaximumError().
|
private |
Multiply image filter to multiply with the zero crossings of the second derivative.
Definition at line 262 of file itkCannyEdgeDetectionImageFilter.h.
Referenced by GetNonMaximumSuppressionImage().
|
private |
Definition at line 275 of file itkCannyEdgeDetectionImageFilter.h.
|
private |
Definition at line 274 of file itkCannyEdgeDetectionImageFilter.h.
|
private |
Definition at line 277 of file itkCannyEdgeDetectionImageFilter.h.
|
private |
Definition at line 271 of file itkCannyEdgeDetectionImageFilter.h.
|
private |
Definition at line 255 of file itkCannyEdgeDetectionImageFilter.h.
|
private |
Definition at line 252 of file itkCannyEdgeDetectionImageFilter.h.
|
private |
Definition at line 249 of file itkCannyEdgeDetectionImageFilter.h.
Referenced by SetVariance().
|
staticconstexpr |
Definition at line 135 of file itkCannyEdgeDetectionImageFilter.h.