Show / Hide Table of Contents

Class ObjectDetectionResult

ObjectDetectionResult

Inheritance
System.Object
BitmovinResponse
ObjectDetectionResult
Inherited Members
BitmovinResponse.Id
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Bitmovin.Api.Sdk.Models
Assembly: Bitmovin.Api.Sdk.dll
Syntax
public class ObjectDetectionResult : BitmovinResponse

Properties

BoundingBox

A box indicating the position and size of the detected object within the frame

Declaration
public ObjectDetectionBoundingBox BoundingBox { get; set; }
Property Value
Type Description
ObjectDetectionBoundingBox

DetectedObject

Name of the object that has been detected (in English)

Declaration
public string DetectedObject { get; set; }
Property Value
Type Description
System.String

Score

A number between 0 and 1 indicating the confidence of the detection

Declaration
public double? Score { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

Timestamp

Time in seconds where the object was detected in the video

Declaration
public double? Timestamp { get; set; }
Property Value
Type Description
System.Nullable<System.Double>
Back to top Generated by DocFX