http://www.emgu.com
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Eliminate the matched features whose scale and rotation do not aggree with the majority's scale and rotation.
Namespace: Emgu.CV.Features2DAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public static Features2DTracker..::..MatchedImageFeature[] VoteForSizeAndOrientation( Features2DTracker..::..MatchedImageFeature[] matchedFeatures, double scaleIncrement, int rotationBins ) |
Visual Basic |
---|
Public Shared Function VoteForSizeAndOrientation ( _ matchedFeatures As Features2DTracker..::..MatchedImageFeature(), _ scaleIncrement As Double, _ rotationBins As Integer _ ) As Features2DTracker..::..MatchedImageFeature() |
Visual C++ |
---|
public: static array<Features2DTracker..::..MatchedImageFeature>^ VoteForSizeAndOrientation( array<Features2DTracker..::..MatchedImageFeature>^ matchedFeatures, double scaleIncrement, int rotationBins ) |
Parameters
- matchedFeatures
- Type: array<Emgu.CV.Features2D..::..Features2DTracker..::..MatchedImageFeature>[]()[][]
The matched feature that will be participated in the voting. For each matchedFeatures, only the zero indexed ModelFeature will be considered.
- scaleIncrement
- Type: System..::..Double
This determins the different in scale for neighbour hood bins, a good value might be 1.5 (which means matched features in bin i+1 is scaled 1.5 times larger than matched features in bin i
- rotationBins
- Type: System..::..Int32
The numbers of bins for rotation, a good value might be 20 (which means each bin covers 18 degree)
Return Value
[Missing <returns> documentation for "M:Emgu.CV.Features2D.Features2DTracker.VoteForSizeAndOrientation(Emgu.CV.Features2D.Features2DTracker.MatchedImageFeature[],System.Double,System.Int32)"]