Class: Aws::LookoutforVision::Types::Anomaly

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-lookoutforvision/types.rb

Overview

Information about an anomaly type found on an image by an image segmentation model. For more information, see DetectAnomalies.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of an anomaly type found in an image. ‘Name` maps to an anomaly type in the training dataset, apart from the anomaly type `background`. The service automatically inserts the `background` anomaly type into the response from `DetectAnomalies`.

Returns:

  • (String)


42
43
44
45
46
47
# File 'lib/aws-sdk-lookoutforvision/types.rb', line 42

class Anomaly < Struct.new(
  :name,
  :pixel_anomaly)
  SENSITIVE = []
  include Aws::Structure
end

#pixel_anomalyTypes::PixelAnomaly

Information about the pixel mask that covers an anomaly type.

Returns:



42
43
44
45
46
47
# File 'lib/aws-sdk-lookoutforvision/types.rb', line 42

class Anomaly < Struct.new(
  :name,
  :pixel_anomaly)
  SENSITIVE = []
  include Aws::Structure
end