LatentSvmDetectorObjectDetection Constructor
|
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic ObjectDetection(
Nullable<Rect> rect = null,
float score = 0f,
int classId = -1
)
Public Sub New (
Optional rect As Nullable(Of Rect) = Nothing,
Optional score As Single = 0F,
Optional classId As Integer = -1
)
public:
ObjectDetection(
Nullable<Rect> rect = nullptr,
float score = 0f,
int classId = -1
)
new :
?rect : Nullable<Rect> *
?score : float32 *
?classId : int
(* Defaults:
let _rect = defaultArg rect null
let _score = defaultArg score 0f
let _classId = defaultArg classId -1
*)
-> ObjectDetection
OpenCvSharp.ObjectDetection = function(rect, score, classId);
Parameters
- rect (Optional)
- Type: SystemNullableRect
- score (Optional)
- Type: SystemSingle
- classId (Optional)
- Type: SystemInt32
See Also