| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.Rekognition.Types.CustomLabel
Description
Synopsis
Documentation
data CustomLabel Source #
A custom label detected in an image by a call to DetectCustomLabels.
See: newCustomLabel smart constructor.
Constructors
| CustomLabel' | |
Fields
| |
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: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.
$sel:name:CustomLabel', customLabel_name - The name of the custom label.
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_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.
customLabel_name :: Lens' CustomLabel (Maybe Text) Source #
The name of the custom label.