Click or drag to resize

CudaHoughLinesDetector Class

http://www.emgu.com
Base class for lines detector algorithm.
Inheritance Hierarchy

Namespace:  Emgu.CV.Cuda
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public class CudaHoughLinesDetector : SharedPtrObject

The CudaHoughLinesDetector type exposes the following members.

Constructors
  NameDescription
Public methodCudaHoughLinesDetector
Create a hough lines detector
Top
Properties
  NameDescription
Public propertyDoSort
Performs lines sort by votes
Public propertyMaxLines
Maximum number of output lines
Public propertyPtr
Pointer to the unmanaged object
(Inherited from UnmanagedObject.)
Public propertyRho
Distance resolution of the accumulator in pixels
Public propertySharedPtr
Pointer to the shared pointer to the unmanaged object
(Inherited from SharedPtrObject.)
Public propertyTheta
Angle resolution of the accumulator in radians
Public propertyThreshold
Accumulator threshold parameter. Only those lines are returned that get enough
Top
Methods
  NameDescription
Public methodDetect
Finds line segments in a binary image using the probabilistic Hough transform.
Public methodDispose
The dispose function that implements IDisposable interface
(Inherited from DisposableObject.)
Protected methodDisposeObject
Release the unmanaged memory associated to this line detector.
(Overrides DisposableObjectDisposeObject.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Destructor
(Inherited from DisposableObject.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodReleaseManagedResources
Release the managed resources. This function will be called during the disposal of the current object. override ride this function if you need to call the Dispose() function on any managed IDisposable object created by the current object
(Inherited from DisposableObject.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Fields
  NameDescription
Protected field_ptr
A pointer to the unmanaged object
(Inherited from UnmanagedObject.)
Protected field_sharedPtr
A pointer to the shared pointer to the unmanaged object
(Inherited from SharedPtrObject.)
Top
See Also