Table of Contents

Class DetectionROI

Namespace
OpenCvSharp
Assembly
OpenCvSharp.dll

struct for detection region of interest (ROI)

public class DetectionROI
Inheritance
DetectionROI
Inherited Members

Constructors

DetectionROI(double, Point[], double[])

Constructor

public DetectionROI(double scale, Point[] locations, double[] confidences)

Parameters

scale double
locations Point[]
confidences double[]

Properties

Confidences

vector that will contain confidence values for each location

public IReadOnlyList<double> Confidences { get; }

Property Value

IReadOnlyList<double>

Locations

set of requested locations to be evaluated

public IReadOnlyList<Point> Locations { get; }

Property Value

IReadOnlyList<Point>

Scale

scale(size) of the bounding box

public double Scale { get; }

Property Value

double