Class: Aws::Rekognition::Types::ConnectedHomeSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::ConnectedHomeSettings
- Defined in:
- gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb
Overview
Label detection settings to use on a streaming video. Defining the
settings is required in the request parameter for
CreateStreamProcessor. Including this setting in the
CreateStreamProcessor
request enables you to use the stream
processor for label detection. You can then select what you want the
stream processor to detect, such as people or pets. When the stream
processor has started, one notification is sent for each object class
specified. For example, if packages and pets are selected, one SNS
notification is published the first time a package is detected and one
SNS notification is published the first time a pet is detected, as
well as an end-of-session summary.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#labels ⇒ Array<String>
Specifies what you want to detect in the video, such as people, packages, or pets.
-
#min_confidence ⇒ Float
The minimum confidence required to label an object in the video.
Instance Attribute Details
#labels ⇒ Array<String>
Specifies what you want to detect in the video, such as people, packages, or pets. The current valid labels you can include in this list are: "PERSON", "PET", "PACKAGE", and "ALL".
530 531 532 533 534 535 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 530 class ConnectedHomeSettings < Struct.new( :labels, :min_confidence) SENSITIVE = [] include Aws::Structure end |
#min_confidence ⇒ Float
The minimum confidence required to label an object in the video.
530 531 532 533 534 535 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 530 class ConnectedHomeSettings < Struct.new( :labels, :min_confidence) SENSITIVE = [] include Aws::Structure end |