HOGDescriptorDetectMultiScaleROI Method
|
evaluate specified ROI and return confidence value for each location in multiple scales
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic void DetectMultiScaleROI(
Mat img,
out Rect[] foundLocations,
out DetectionROI[] locations,
double hitThreshold = 0,
int groupThreshold = 0
)
Public Sub DetectMultiScaleROI (
img As Mat,
<OutAttribute> ByRef foundLocations As Rect(),
<OutAttribute> ByRef locations As DetectionROI(),
Optional hitThreshold As Double = 0,
Optional groupThreshold As Integer = 0
)
public:
void DetectMultiScaleROI(
Mat^ img,
[OutAttribute] array<Rect>^% foundLocations,
[OutAttribute] array<DetectionROI^>^% locations,
double hitThreshold = 0,
int groupThreshold = 0
)
member DetectMultiScaleROI :
img : Mat *
foundLocations : Rect[] byref *
locations : DetectionROI[] byref *
?hitThreshold : float *
?groupThreshold : int
(* Defaults:
let _hitThreshold = defaultArg hitThreshold 0
let _groupThreshold = defaultArg groupThreshold 0
*)
-> unit
function DetectMultiScaleROI(img, foundLocations, locations, hitThreshold, groupThreshold);
Parameters
- img
- Type: OpenCvSharpMat
- foundLocations
- Type: OpenCvSharpRect
- locations
- Type: OpenCvSharpDetectionROI
- hitThreshold (Optional)
- Type: SystemDouble
- groupThreshold (Optional)
- Type: SystemInt32
See Also