Class: Aws::LookoutforVision::Types::PixelAnomaly

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#colorString

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.

Returns:

  • (String)


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_areaFloat

The percentage area of the image that the anomaly type covers.

Returns:

  • (Float)


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