ITK
4.2.0
Insight Segmentation and Registration Toolkit
|
#include <itkHoughTransform2DLinesImageFilter.h>
Static Public Member Functions | |
static Pointer | New () |
Private Member Functions | |
HoughTransform2DLinesImageFilter (const Self &) | |
void | operator= (const Self &) |
Private Attributes | |
float | m_AngleResolution |
float | m_DiscRadius |
LinesListType | m_LinesList |
LinesListSizeType | m_NumberOfLines |
unsigned long | m_OldModifiedTime |
LinesListSizeType | m_OldNumberOfLines |
OutputImagePointer | m_SimplifyAccumulator |
float | m_Threshold |
float | m_Variance |
Additional Inherited Members | |
Static Public Attributes inherited from itk::ImageToImageFilter< Image< TInputPixelType, 2 >, Image< TOutputPixelType, 2 > > | |
static const unsigned int | InputImageDimension |
static const unsigned int | OutputImageDimension |
Static Public Attributes inherited from itk::ImageSource< Image< TOutputPixelType, 2 > > | |
Protected Types inherited from itk::ImageToImageFilter< Image< TInputPixelType, 2 >, Image< TOutputPixelType, 2 > > | |
typedef ImageToImageFilterDetail::ImageRegionCopier < itkGetStaticConstMacro(OutputImageDimension), itkGetStaticConstMacro(InputImageDimension) > | InputToOutputRegionCopierType |
typedef ImageToImageFilterDetail::ImageRegionCopier < itkGetStaticConstMacro(InputImageDimension), itkGetStaticConstMacro(OutputImageDimension) > | OutputToInputRegionCopierType |
Performs the Hough Transform to find 2D straight lines in a 2D image.
This filter derives from ImageToImageFilter. The input is an image, and all pixels above some threshold are those to be extracted. The output is the image of the accumulator. GetLines() returns a list of LinesSpatialObjects.
Lines are parameterized in the form: R = x*vcl_cos(Teta)+y*vcl_sin(Teta) where R is the perpendicular distance from the origin and Teta the angle with the normal.
The output is the accumulator array: -The first dimension (X) represents the distance R from the corner to the line -The second dimension (Y) represents the angle between the X axis and the normal to the line.
The size of the array depends on the AngleAxisSize that could be set (500 by default) for the angle axis. The distance axis depends on the size of the diagonal of the input image.
Definition at line 62 of file itkHoughTransform2DLinesImageFilter.h.
typedef SmartPointer< const Self > itk::HoughTransform2DLinesImageFilter< TInputPixelType, TOutputPixelType >::ConstPointer |
Reimplemented from itk::ImageToImageFilter< Image< TInputPixelType, 2 >, Image< TOutputPixelType, 2 > >.
Definition at line 81 of file itkHoughTransform2DLinesImageFilter.h.
typedef InputImageType::IndexType itk::HoughTransform2DLinesImageFilter< TInputPixelType, TOutputPixelType >::IndexType |
Image index typedef
Definition at line 95 of file itkHoughTransform2DLinesImageFilter.h.
typedef InputImageType::ConstPointer itk::HoughTransform2DLinesImageFilter< TInputPixelType, TOutputPixelType >::InputImageConstPointer |
Reimplemented from itk::ImageToImageFilter< Image< TInputPixelType, 2 >, Image< TOutputPixelType, 2 > >.
Definition at line 73 of file itkHoughTransform2DLinesImageFilter.h.
typedef InputImageType::Pointer itk::HoughTransform2DLinesImageFilter< TInputPixelType, TOutputPixelType >::InputImagePointer |
Reimplemented from itk::ImageToImageFilter< Image< TInputPixelType, 2 >, Image< TOutputPixelType, 2 > >.
Definition at line 72 of file itkHoughTransform2DLinesImageFilter.h.
typedef Image< TInputPixelType, 2 > itk::HoughTransform2DLinesImageFilter< TInputPixelType, TOutputPixelType >::InputImageType |
Input Image typedef
Reimplemented from itk::ImageToImageFilter< Image< TInputPixelType, 2 >, Image< TOutputPixelType, 2 > >.
Definition at line 71 of file itkHoughTransform2DLinesImageFilter.h.
typedef LineType::Pointer itk::HoughTransform2DLinesImageFilter< TInputPixelType, TOutputPixelType >::LinePointer |
Definition at line 85 of file itkHoughTransform2DLinesImageFilter.h.
typedef LineType::LinePointType itk::HoughTransform2DLinesImageFilter< TInputPixelType, TOutputPixelType >::LinePointType |
Definition at line 87 of file itkHoughTransform2DLinesImageFilter.h.
typedef LinesListType::size_type itk::HoughTransform2DLinesImageFilter< TInputPixelType, TOutputPixelType >::LinesListSizeType |
Definition at line 89 of file itkHoughTransform2DLinesImageFilter.h.
typedef std::list< LinePointer > itk::HoughTransform2DLinesImageFilter< TInputPixelType, TOutputPixelType >::LinesListType |
Definition at line 86 of file itkHoughTransform2DLinesImageFilter.h.
typedef LineSpatialObject< 2 > itk::HoughTransform2DLinesImageFilter< TInputPixelType, TOutputPixelType >::LineType |
Line typedef
Definition at line 84 of file itkHoughTransform2DLinesImageFilter.h.
typedef OutputImageType::Pointer itk::HoughTransform2DLinesImageFilter< TInputPixelType, TOutputPixelType >::OutputImagePointer |
Reimplemented from itk::ImageSource< Image< TOutputPixelType, 2 > >.
Definition at line 77 of file itkHoughTransform2DLinesImageFilter.h.
typedef InputImageType::RegionType itk::HoughTransform2DLinesImageFilter< TInputPixelType, TOutputPixelType >::OutputImageRegionType |
Typedef to describe the output image region type.
Reimplemented from itk::ImageToImageFilter< Image< TInputPixelType, 2 >, Image< TOutputPixelType, 2 > >.
Definition at line 101 of file itkHoughTransform2DLinesImageFilter.h.
typedef Image< TOutputPixelType, 2 > itk::HoughTransform2DLinesImageFilter< TInputPixelType, TOutputPixelType >::OutputImageType |
Output Image typedef
Reimplemented from itk::ImageSource< Image< TOutputPixelType, 2 > >.
Definition at line 76 of file itkHoughTransform2DLinesImageFilter.h.
typedef InputImageType::PixelType itk::HoughTransform2DLinesImageFilter< TInputPixelType, TOutputPixelType >::PixelType |
Image pixel value typedef
Definition at line 98 of file itkHoughTransform2DLinesImageFilter.h.
typedef SmartPointer< Self > itk::HoughTransform2DLinesImageFilter< TInputPixelType, TOutputPixelType >::Pointer |
Smart pointer typedef support.
Reimplemented from itk::ImageToImageFilter< Image< TInputPixelType, 2 >, Image< TOutputPixelType, 2 > >.
Definition at line 80 of file itkHoughTransform2DLinesImageFilter.h.
typedef HoughTransform2DLinesImageFilter itk::HoughTransform2DLinesImageFilter< TInputPixelType, TOutputPixelType >::Self |
Standard "Self" typedef.
Reimplemented from itk::ImageToImageFilter< Image< TInputPixelType, 2 >, Image< TOutputPixelType, 2 > >.
Definition at line 68 of file itkHoughTransform2DLinesImageFilter.h.
typedef ImageToImageFilter< InputImageType, OutputImageType > itk::HoughTransform2DLinesImageFilter< TInputPixelType, TOutputPixelType >::Superclass |
Standard "Superclass" typedef.
Reimplemented from itk::ImageToImageFilter< Image< TInputPixelType, 2 >, Image< TOutputPixelType, 2 > >.
Definition at line 92 of file itkHoughTransform2DLinesImageFilter.h.
|
protected |
End concept checking
|
inlineprotectedvirtual |
Definition at line 166 of file itkHoughTransform2DLinesImageFilter.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.
|
protectedvirtual |
HoughTransform2DLinesImageFilter must produce the entire output
Reimplemented from itk::ProcessObject.
|
virtual |
Method for evaluating the implicit function over the image.
Reimplemented from itk::ImageSource< Image< TOutputPixelType, 2 > >.
|
protectedvirtual |
HoughTransform2DLinesImageFilter needs the entire input. Therefore it must provide an implementation GenerateInputRequestedRegion().
Reimplemented from itk::ImageToImageFilter< Image< TInputPixelType, 2 >, Image< TOutputPixelType, 2 > >.
|
protectedvirtual |
HoughTransform2DLinesImageFilter's output is the accumulator array. The size of the output is a function of the size of the input and the AngleAxisSize. Since this output is a different size than the input, it must provide an implementation of GenerateOutputInformation.
Reimplemented from itk::ProcessObject.
|
virtual |
Get the resolution angle
|
virtual |
Set/Get the radius of the disc to remove from the accumulator for each line found
LinesListType& itk::HoughTransform2DLinesImageFilter< TInputPixelType, TOutputPixelType >::GetLines | ( | unsigned int | n = 0 | ) |
Get the list of lines. This recomputes the lines
|
virtual |
Run-time type information (and related methods).
Reimplemented from itk::ImageToImageFilter< Image< TInputPixelType, 2 >, Image< TOutputPixelType, 2 > >.
|
virtual |
Set/Get the number of lines to extract
|
virtual |
Get the Simplified accumulator
|
virtual |
Get the threshold value
|
virtual |
Set the variance of the gaussian bluring for the accumulator
|
static |
Method for creation through the object factory.
Reimplemented from itk::Object.
|
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< Image< TInputPixelType, 2 >, Image< TOutputPixelType, 2 > >.
|
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< Image< TInputPixelType, 2 >, Image< TOutputPixelType, 2 > >.
|
virtual |
Set the resolution angle: The hough space descibes (in the angle direction) [-PI,PI[ with a constant stepe AngleResolution
|
virtual |
Set/Get the radius of the disc to remove from the accumulator for each line found
|
virtual |
Set/Get the number of lines to extract
|
virtual |
Set the threshold above which the filter should consider the point as a valid point
|
virtual |
Set the variance of the gaussian bluring for the accumulator
void itk::HoughTransform2DLinesImageFilter< TInputPixelType, TOutputPixelType >::Simplify | ( | void | ) |
Simplify the accumulator
itk::HoughTransform2DLinesImageFilter< TInputPixelType, TOutputPixelType >::typedef | ( | Concept::Convertible< int, TOutputPixelType > | ) |
Begin concept checking This class requires IntConvertibleToOutputCheck in the form of ( Concept::Convertible< int, TOutputPixelType > )
itk::HoughTransform2DLinesImageFilter< TInputPixelType, TOutputPixelType >::typedef | ( | Concept::GreaterThanComparable< PixelType, float > | ) |
This class requires InputGreaterThanFloatCheck in the form of ( Concept::GreaterThanComparable< PixelType, float > )
itk::HoughTransform2DLinesImageFilter< TInputPixelType, TOutputPixelType >::typedef | ( | Concept::AdditiveOperators< TOutputPixelType, int > | ) |
This class requires OutputPlusIntCheck in the form of ( Concept::AdditiveOperators< TOutputPixelType, int > )
|
private |
Definition at line 191 of file itkHoughTransform2DLinesImageFilter.h.
|
private |
Definition at line 196 of file itkHoughTransform2DLinesImageFilter.h.
|
private |
Definition at line 194 of file itkHoughTransform2DLinesImageFilter.h.
|
private |
Definition at line 195 of file itkHoughTransform2DLinesImageFilter.h.
|
private |
Definition at line 198 of file itkHoughTransform2DLinesImageFilter.h.
|
private |
Definition at line 199 of file itkHoughTransform2DLinesImageFilter.h.
|
private |
Definition at line 193 of file itkHoughTransform2DLinesImageFilter.h.
|
private |
Definition at line 192 of file itkHoughTransform2DLinesImageFilter.h.
|
private |
Definition at line 197 of file itkHoughTransform2DLinesImageFilter.h.