Show / Hide Table of Contents

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 Source

DetectionROI(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 Source

Confidences

vector that will contain confidence values for each location

Declaration
public IReadOnlyList<double> Confidences { get; }
Property Value
Type Description
IReadOnlyList<System.Double>
| Improve this Doc View Source

Locations

set of requested locations to be evaluated

Declaration
public IReadOnlyList<Point> Locations { get; }
Property Value
Type Description
IReadOnlyList<OpenCvSharp.Point>
| Improve this Doc View Source

Scale

scale(size) of the bounding box

Declaration
public double Scale { get; }
Property Value
Type Description
System.Double
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX