class Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1SegmentationConfig

Config for image segmentation

Attributes

annotation_spec_set[RW]

Required. Annotation spec set resource name. format: projects/`project_id`/ annotationSpecSets/`annotation_spec_set_id` Corresponds to the JSON property `annotationSpecSet` @return [String]

instruction_message[RW]

Instruction message showed on labelers UI. Corresponds to the JSON property `instructionMessage` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 4188
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 4193
def update!(**args)
  @annotation_spec_set = args[:annotation_spec_set] if args.key?(:annotation_spec_set)
  @instruction_message = args[:instruction_message] if args.key?(:instruction_message)
end