Class ObjectDetectionResult
Definition
- Namespace:
- Tizen.Multimedia.Vision
- Assembly:
- Tizen.Multimedia.Vision.dll
Provides the ability to get the result of object detection using InferenceModelConfiguration and ObjectDetector.
public class ObjectDetectionResult
- Inheritance
-
objectObjectDetectionResult
Properties
View SourceConfidence
Gets the confidence of detected object.
Declaration
public float Confidence { get; }
Property Value
Type | Description |
---|---|
float |
Indice
Gets the indice of detected object.
Declaration
public int Indice { get; }
Property Value
Type | Description |
---|---|
int |
Location
Gets the location of detected object.
Declaration
public Rectangle Location { get; }
Property Value
Type | Description |
---|---|
Rectangle |
Name
Gets the name of detected object.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
string |