Class FindCornerSubPix
Represents an operator that finds the sub-pixel accurate locations of each corner or radial saddle point in the sequence.
public class FindCornerSubPix : Transform<KeyPointCollection, KeyPointCollection>
- Inheritance
-
FindCornerSubPix
- Inherited Members
Properties
Epsilon
Gets or sets the minimum required accuracy for convergence.
public double Epsilon { get; set; }
Property Value
MaxIterations
Gets or sets the maximum number of iterations.
public int MaxIterations { get; set; }
Property Value
WindowSize
Gets or sets the half-length of the side of the corner search window.
public Size WindowSize { get; set; }
Property Value
ZeroZone
Gets or sets the half-length of the side of the middle search window that will be ignored during refinement.
public Size ZeroZone { get; set; }
Property Value
Methods
Process(IObservable<KeyPointCollection>)
Finds the sub-pixel accurate locations of each corner or radial saddle point in an observable sequence.
public override IObservable<KeyPointCollection> Process(IObservable<KeyPointCollection> source)
Parameters
source
IObservable<KeyPointCollection>The sequence of corner positions to refine.
Returns
- IObservable<KeyPointCollection>
The sequence of refined corner positions.