VideoStreamObjectDetectionFeature¶
-
class
oci.ai_vision.models.
VideoStreamObjectDetectionFeature
(**kwargs)¶ Bases:
oci.ai_vision.models.video_stream_feature.VideoStreamFeature
Video stream object detection 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. max_results
Gets the max_results of this VideoStreamObjectDetectionFeature. min_confidence
Gets the min_confidence of this VideoStreamObjectDetectionFeature. Methods
__init__
(**kwargs)Initializes a new VideoStreamObjectDetectionFeature 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 VideoStreamObjectDetectionFeature object with values from keyword arguments. The default value of the
feature_type
attribute of this class isOBJECT_DETECTION
and 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 VideoStreamObjectDetectionFeature. Allowed values for this property are: “OBJECT_TRACKING”, “FACE_DETECTION”, “OBJECT_DETECTION”
- min_confidence (float) – The value to assign to the min_confidence property of this VideoStreamObjectDetectionFeature.
- max_results (int) – The value to assign to the max_results property of this VideoStreamObjectDetectionFeature.
-
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.
-
max_results
¶ Gets the max_results of this VideoStreamObjectDetectionFeature. The maximum number of results per frame to return.
Returns: The max_results of this VideoStreamObjectDetectionFeature. Return type: int
-
min_confidence
¶ Gets the min_confidence of this VideoStreamObjectDetectionFeature. The minimum confidence score, between 0 and 1, when the value is set, results with lower confidence will not be returned.
Returns: The min_confidence of this VideoStreamObjectDetectionFeature. Return type: float
-