Class DetectionROI
struct for detection region of interest (ROI)
Inheritance
System.Object
DetectionROI
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: OpenCvSharp
Assembly: OpenCvSharp.dll
Syntax
public class DetectionROI
Constructors
| Improve this Doc View SourceDetectionROI(Double, Point[], Double[])
Constructor
Declaration
public DetectionROI(double scale, Point[] locations, double[] confidences)
Parameters
Type | Name | Description |
---|---|---|
System.Double | scale | |
OpenCvSharp.Point[] | locations | |
System.Double[] | confidences |
Properties
| Improve this Doc View SourceConfidences
vector that will contain confidence values for each location
Declaration
public IReadOnlyList<double> Confidences { get; }
Property Value
Type | Description |
---|---|
IReadOnlyList<System.Double> |
Locations
set of requested locations to be evaluated
Declaration
public IReadOnlyList<Point> Locations { get; }
Property Value
Type | Description |
---|---|
IReadOnlyList<OpenCvSharp.Point> |
Scale
scale(size) of the bounding box
Declaration
public double Scale { get; }
Property Value
Type | Description |
---|---|
System.Double |