Show / Hide Table of Contents

Class VideoStreamObject

Tracked object in a video stream.

Inheritance
object
VideoStreamObject
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AivisionService.Models
Assembly: OCI.DotNetSDK.Aivision.dll
Syntax
public class VideoStreamObject

Properties

BoundingPolygon

Declaration
[Required(ErrorMessage = "BoundingPolygon is required.")]
[JsonProperty(PropertyName = "boundingPolygon")]
public BoundingPolygon BoundingPolygon { get; set; }
Property Value
Type Description
BoundingPolygon
Remarks

Required

Confidence

Declaration
[Required(ErrorMessage = "Confidence is required.")]
[JsonProperty(PropertyName = "confidence")]
public float? Confidence { get; set; }
Property Value
Type Description
float?

The confidence score, between 0 and 1.

Remarks

Required

Name

Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

Name of the object category label.

Remarks

Required

ObjectId

Declaration
[JsonProperty(PropertyName = "objectId")]
public int? ObjectId { get; set; }
Property Value
Type Description
int?

Unique identifier for the object.

Properties

Declaration
[JsonProperty(PropertyName = "properties")]
public ObjectProperties Properties { get; set; }
Property Value
Type Description
ObjectProperties
In this article
Back to top