Table of Contents

Class FindCornerSubPix

Namespace
Bonsai.Vision
Assembly
Bonsai.Vision.dll

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

double

MaxIterations

Gets or sets the maximum number of iterations.

public int MaxIterations { get; set; }

Property Value

int

WindowSize

Gets or sets the half-length of the side of the corner search window.

public Size WindowSize { get; set; }

Property Value

Size

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

Size

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.