C# Class OpenCvSharp.GeneralizedHough

finds arbitrary template in the grayscale image using Generalized Hough Transform
Inheritance: Algorithm
ファイルを表示 Open project: shimat/opencvsharp

Public Methods

Method Description
Detect ( InputArray edges, InputArray dx, InputArray dy, OutputArray positions, OutputArray votes = null ) : void

find template on image

Detect ( InputArray image, OutputArray positions, OutputArray votes = null ) : void

find template on image

SetTemplate ( InputArray edges, InputArray dx, InputArray dy, System.Point templCenter = null ) : void

set template to search

SetTemplate ( InputArray templ, System.Point templCenter = null ) : void

set template to search

Method Details

Detect() public method

find template on image
public Detect ( InputArray edges, InputArray dx, InputArray dy, OutputArray positions, OutputArray votes = null ) : void
edges InputArray
dx InputArray
dy InputArray
positions OutputArray
votes OutputArray
return void

Detect() public method

find template on image
public Detect ( InputArray image, OutputArray positions, OutputArray votes = null ) : void
image InputArray
positions OutputArray
votes OutputArray
return void

SetTemplate() public method

set template to search
public SetTemplate ( InputArray edges, InputArray dx, InputArray dy, System.Point templCenter = null ) : void
edges InputArray
dx InputArray
dy InputArray
templCenter System.Point
return void

SetTemplate() public method

set template to search
public SetTemplate ( InputArray templ, System.Point templCenter = null ) : void
templ InputArray
templCenter System.Point
return void