ruạṛ
# coding: utf-8 # Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 from .entity import Entity from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 from oci.decorators import init_model_state_from_kwargs @init_model_state_from_kwargs class ImageObjectSelectionEntity(Entity): """ This lets the labeler specify a series of coordinates in the image to represent an object and apply labels to it. The coordinates are connected in the order that they are provided. The last coordinate in the array is connected to the first coordinate. """ def __init__(self, **kwargs): """ Initializes a new ImageObjectSelectionEntity object with values from keyword arguments. The default value of the :py:attr:`~oci.data_labeling_service_dataplane.models.ImageObjectSelectionEntity.entity_type` attribute of this class is ``IMAGEOBJECTSELECTION`` and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param entity_type: The value to assign to the entity_type property of this ImageObjectSelectionEntity. Allowed values for this property are: "GENERIC", "IMAGEOBJECTSELECTION", "TEXTSELECTION", "KEYVALUESELECTION" :type entity_type: str :param labels: The value to assign to the labels property of this ImageObjectSelectionEntity. :type labels: list[oci.data_labeling_service_dataplane.models.Label] :param bounding_polygon: The value to assign to the bounding_polygon property of this ImageObjectSelectionEntity. :type bounding_polygon: oci.data_labeling_service_dataplane.models.BoundingPolygon :param extended_metadata: The value to assign to the extended_metadata property of this ImageObjectSelectionEntity. :type extended_metadata: dict(str, str) """ self.swagger_types = { 'entity_type': 'str', 'labels': 'list[Label]', 'bounding_polygon': 'BoundingPolygon', 'extended_metadata': 'dict(str, str)' } self.attribute_map = { 'entity_type': 'entityType', 'labels': 'labels', 'bounding_polygon': 'boundingPolygon', 'extended_metadata': 'extendedMetadata' } self._entity_type = None self._labels = None self._bounding_polygon = None self._extended_metadata = None self._entity_type = 'IMAGEOBJECTSELECTION' @property def labels(self): """ **[Required]** Gets the labels of this ImageObjectSelectionEntity. A collection of label entities. :return: The labels of this ImageObjectSelectionEntity. :rtype: list[oci.data_labeling_service_dataplane.models.Label] """ return self._labels @labels.setter def labels(self, labels): """ Sets the labels of this ImageObjectSelectionEntity. A collection of label entities. :param labels: The labels of this ImageObjectSelectionEntity. :type: list[oci.data_labeling_service_dataplane.models.Label] """ self._labels = labels @property def bounding_polygon(self): """ **[Required]** Gets the bounding_polygon of this ImageObjectSelectionEntity. :return: The bounding_polygon of this ImageObjectSelectionEntity. :rtype: oci.data_labeling_service_dataplane.models.BoundingPolygon """ return self._bounding_polygon @bounding_polygon.setter def bounding_polygon(self, bounding_polygon): """ Sets the bounding_polygon of this ImageObjectSelectionEntity. :param bounding_polygon: The bounding_polygon of this ImageObjectSelectionEntity. :type: oci.data_labeling_service_dataplane.models.BoundingPolygon """ self._bounding_polygon = bounding_polygon @property def extended_metadata(self): """ Gets the extended_metadata of this ImageObjectSelectionEntity. A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: `{\"bar-key\": \"value\"}` :return: The extended_metadata of this ImageObjectSelectionEntity. :rtype: dict(str, str) """ return self._extended_metadata @extended_metadata.setter def extended_metadata(self, extended_metadata): """ Sets the extended_metadata of this ImageObjectSelectionEntity. A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: `{\"bar-key\": \"value\"}` :param extended_metadata: The extended_metadata of this ImageObjectSelectionEntity. :type: dict(str, str) """ self._extended_metadata = extended_metadata def __repr__(self): return formatted_flat_dict(self) def __eq__(self, other): if other is None: return False return self.__dict__ == other.__dict__ def __ne__(self, other): return not self == other
cải xoăn