Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Synopsis
Documentation
data CustomLabel Source #
A custom label detected in an image by a call to DetectCustomLabels.
See: newCustomLabel
smart constructor.
CustomLabel' | |
|
Instances
newCustomLabel :: CustomLabel Source #
Create a value of CustomLabel
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:confidence:CustomLabel'
, customLabel_confidence
- The confidence that the model has in the detection of the custom label.
The range is 0-100. A higher value indicates a higher confidence.
$sel:name:CustomLabel'
, customLabel_name
- The name of the custom label.
$sel:geometry:CustomLabel'
, customLabel_geometry
- The location of the detected object on the image that corresponds to the
custom label. Includes an axis aligned coarse bounding box surrounding
the object and a finer grain polygon for more accurate spatial
information.
customLabel_confidence :: Lens' CustomLabel (Maybe Double) Source #
The confidence that the model has in the detection of the custom label. The range is 0-100. A higher value indicates a higher confidence.
customLabel_name :: Lens' CustomLabel (Maybe Text) Source #
The name of the custom label.
customLabel_geometry :: Lens' CustomLabel (Maybe Geometry) Source #
The location of the detected object on the image that corresponds to the custom label. Includes an axis aligned coarse bounding box surrounding the object and a finer grain polygon for more accurate spatial information.