VideoStreamObjectTrackingFeature¶
- 
class oci.ai_vision.models.VideoStreamObjectTrackingFeature(**kwargs)¶
- Bases: - oci.ai_vision.models.video_stream_feature.VideoStreamFeature- Video stream object tracking feature - Attributes - FEATURE_TYPE_FACE_DETECTION- str(object=’’) -> str - FEATURE_TYPE_OBJECT_DETECTION- str(object=’’) -> str - FEATURE_TYPE_OBJECT_TRACKING- str(object=’’) -> str - feature_type- [Required] Gets the feature_type of this VideoStreamFeature. - tracking_types- [Required] Gets the tracking_types of this VideoStreamObjectTrackingFeature. - Methods - __init__(**kwargs)- Initializes a new VideoStreamObjectTrackingFeature object with values from keyword arguments. - get_subtype(object_dictionary)- Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. - 
FEATURE_TYPE_FACE_DETECTION= 'FACE_DETECTION'¶
 - 
FEATURE_TYPE_OBJECT_DETECTION= 'OBJECT_DETECTION'¶
 - 
FEATURE_TYPE_OBJECT_TRACKING= 'OBJECT_TRACKING'¶
 - 
__init__(**kwargs)¶
- Initializes a new VideoStreamObjectTrackingFeature object with values from keyword arguments. The default value of the - feature_typeattribute of this class is- OBJECT_TRACKINGand it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):- Parameters: - feature_type (str) – The value to assign to the feature_type property of this VideoStreamObjectTrackingFeature. Allowed values for this property are: “OBJECT_TRACKING”, “FACE_DETECTION”, “OBJECT_DETECTION”
- tracking_types (list[oci.ai_vision.models.TrackingType]) – The value to assign to the tracking_types property of this VideoStreamObjectTrackingFeature.
 
 - 
feature_type¶
- [Required] Gets the feature_type of this VideoStreamFeature. The feature of video analysis. Allowed values are: - OBJECT_TRACKING: Object tracking feature(OT). - FACE_DETECTION: Face detection feature(FD). - OBJECT_DETECTION: Object detection feature(OD) - Allowed values for this property are: “OBJECT_TRACKING”, “FACE_DETECTION”, “OBJECT_DETECTION”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’. - Returns: - The feature_type of this VideoStreamFeature. - Return type: - str 
 - 
static get_subtype(object_dictionary)¶
- Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. 
 - 
tracking_types¶
- [Required] Gets the tracking_types of this VideoStreamObjectTrackingFeature. List of details of what to track. - Returns: - The tracking_types of this VideoStreamObjectTrackingFeature. - Return type: - list[oci.ai_vision.models.TrackingType] 
 
-