Class: Aws::LookoutforVision::Types::PixelAnomaly
- Inherits:
-
Struct
- Object
- Struct
- Aws::LookoutforVision::Types::PixelAnomaly
- Defined in:
- gems/aws-sdk-lookoutforvision/lib/aws-sdk-lookoutforvision/types.rb
Overview
Information about the pixels in an anomaly mask. For more information,
see Anomaly. PixelAnomaly
is only returned by image segmentation
models.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#color ⇒ String
A hex color value for the mask that covers an anomaly type.
-
#total_percentage_area ⇒ Float
The percentage area of the image that the anomaly type covers.
Instance Attribute Details
#color ⇒ String
A hex color value for the mask that covers an anomaly type. Each anomaly type has a different mask color. The color maps to the color of the anomaly type used in the training dataset.
1530 1531 1532 1533 1534 1535 |
# File 'gems/aws-sdk-lookoutforvision/lib/aws-sdk-lookoutforvision/types.rb', line 1530 class PixelAnomaly < Struct.new( :total_percentage_area, :color) SENSITIVE = [] include Aws::Structure end |
#total_percentage_area ⇒ Float
The percentage area of the image that the anomaly type covers.
1530 1531 1532 1533 1534 1535 |
# File 'gems/aws-sdk-lookoutforvision/lib/aws-sdk-lookoutforvision/types.rb', line 1530 class PixelAnomaly < Struct.new( :total_percentage_area, :color) SENSITIVE = [] include Aws::Structure end |