GeneralizedHoughDetect Method (InputArray, InputArray, InputArray, OutputArray, OutputArray)
|
find template on image
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic virtual void Detect(
InputArray edges,
InputArray dx,
InputArray dy,
OutputArray positions,
OutputArray votes = null
)
Public Overridable Sub Detect (
edges As InputArray,
dx As InputArray,
dy As InputArray,
positions As OutputArray,
Optional votes As OutputArray = Nothing
)
public:
virtual void Detect(
InputArray^ edges,
InputArray^ dx,
InputArray^ dy,
OutputArray^ positions,
OutputArray^ votes = nullptr
)
abstract Detect :
edges : InputArray *
dx : InputArray *
dy : InputArray *
positions : OutputArray *
?votes : OutputArray
(* Defaults:
let _votes = defaultArg votes null
*)
-> unit
override Detect :
edges : InputArray *
dx : InputArray *
dy : InputArray *
positions : OutputArray *
?votes : OutputArray
(* Defaults:
let _votes = defaultArg votes null
*)
-> unit
function Detect(edges, dx, dy, positions, votes);
Parameters
- edges
- Type: OpenCvSharpInputArray
- dx
- Type: OpenCvSharpInputArray
- dy
- Type: OpenCvSharpInputArray
- positions
- Type: OpenCvSharpOutputArray
- votes (Optional)
- Type: OpenCvSharpOutputArray
See Also