Click or drag to resize
Accord.NET (logo)

GroupMatching Class

Group matching algorithm for detection region averaging.
Inheritance Hierarchy
SystemObject
  Accord.VisionGroupMatchingRectangle
    Accord.VisionGroupMatching

Namespace:  Accord.Vision
Assembly:  Accord.Vision (in Accord.Vision.dll) Version: 3.8.0
Syntax
public sealed class GroupMatching : GroupMatching<Rectangle>
Request Example View Source

The GroupMatching type exposes the following members.

Constructors
  NameDescription
Public methodGroupMatching
Creates a new GroupMatching object.
Top
Properties
  NameDescription
Public propertyClasses (Inherited from GroupMatchingT.)
Public propertyMinimumNeighbors
Gets or sets the minimum number of neighbors necessary to keep a detection. If a rectangle has less neighbors than this number, it will be discarded as a false positive.
(Inherited from GroupMatchingT.)
Public propertyThreshold
Gets the minimum distance threshold to consider two rectangles as neighbors. Default is 0.2.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodGroup
Groups possibly near rectangles into a smaller set of distinct and averaged rectangles.
(Inherited from GroupMatchingT.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Extension Methods
  NameDescription
Public Extension MethodHasMethod
Checks whether an object implements a method with the given name.
(Defined by ExtensionMethods.)
Public Extension MethodIsEqual
Compares two objects for equality, performing an elementwise comparison if the elements are vectors or matrices.
(Defined by Matrix.)
Public Extension MethodTo(Type)Overloaded.
Converts an object into another type, irrespective of whether the conversion can be done at compile time or not. This can be used to convert generic types to numeric types during runtime.
(Defined by ExtensionMethods.)
Public Extension MethodToTOverloaded.
Converts an object into another type, irrespective of whether the conversion can be done at compile time or not. This can be used to convert generic types to numeric types during runtime.
(Defined by ExtensionMethods.)
Top
Remarks
This class can be seen as a post-processing filter. Its goal is to group near or contained regions together in order to produce more robust and smooth estimates of the detected regions.
See Also