Class ObjectDetectionResult

Definition

Namespace:
Tizen.Multimedia.Vision
Assembly:
Tizen.Multimedia.Vision.dll
API Level:
6

Provides the ability to get the result of object detection using InferenceModelConfiguration and ObjectDetector.

C#
Copy
public class ObjectDetectionResult
Inheritance
System.Object
ObjectDetectionResult

Properties

View Source

Confidence

Gets the confidence of detected object.

Declaration
C#
Copy
public float Confidence { get; }
Property Value
Type Description
System.Single
API Level: 6
View Source

Indice

Gets the indice of detected object.

Declaration
C#
Copy
public int Indice { get; }
Property Value
Type Description
Int32
API Level: 6
View Source

Location

Gets the location of detected object.

Declaration
C#
Copy
public Rectangle Location { get; }
Property Value
Type Description
Rectangle
API Level: 6
View Source

Name

Gets the name of detected object.

Declaration
C#
Copy
public string Name { get; }
Property Value
Type Description
System.String
API Level: 6