C# Class OpenCvSharp.GeneralizedHough

finds arbitrary template in the grayscale image using Generalized Hough Transform
Inheritance: Algorithm
Afficher le fichier Open project: shimat/opencvsharp

Méthodes publiques

Méthode 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 méthode

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
Résultat void

Detect() public méthode

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

SetTemplate() public méthode

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
Résultat void

SetTemplate() public méthode

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