File: computer_vision_api_enums.py

package info (click to toggle)
python-azure 20181112%2Bgit-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 407,300 kB
  • sloc: python: 717,190; makefile: 201; sh: 76
file content (113 lines) | stat: -rw-r--r-- 2,561 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from enum import Enum


class TextOperationStatusCodes(str, Enum):

    not_started = "Not Started"
    running = "Running"
    failed = "Failed"
    succeeded = "Succeeded"


class Gender(str, Enum):

    male = "Male"
    female = "Female"


class ComputerVisionErrorCodes(str, Enum):

    invalid_image_url = "InvalidImageUrl"
    invalid_image_format = "InvalidImageFormat"
    invalid_image_size = "InvalidImageSize"
    not_supported_visual_feature = "NotSupportedVisualFeature"
    not_supported_image = "NotSupportedImage"
    invalid_details = "InvalidDetails"
    not_supported_language = "NotSupportedLanguage"
    bad_argument = "BadArgument"
    failed_to_process = "FailedToProcess"
    timeout = "Timeout"
    internal_server_error = "InternalServerError"
    unspecified = "Unspecified"
    storage_exception = "StorageException"


class VisualFeatureTypes(str, Enum):

    image_type = "ImageType"
    faces = "Faces"
    adult = "Adult"
    categories = "Categories"
    color = "Color"
    tags = "Tags"
    description = "Description"


class OcrLanguages(str, Enum):

    unk = "unk"
    zh_hans = "zh-Hans"
    zh_hant = "zh-Hant"
    cs = "cs"
    da = "da"
    nl = "nl"
    en = "en"
    fi = "fi"
    fr = "fr"
    de = "de"
    el = "el"
    hu = "hu"
    it = "it"
    ja = "ja"
    ko = "ko"
    nb = "nb"
    pl = "pl"
    pt = "pt"
    ru = "ru"
    es = "es"
    sv = "sv"
    tr = "tr"
    ar = "ar"
    ro = "ro"
    sr_cyrl = "sr-Cyrl"
    sr_latn = "sr-Latn"
    sk = "sk"


class TextRecognitionMode(str, Enum):

    handwritten = "Handwritten"
    printed = "Printed"


class AzureRegions(str, Enum):

    westus = "westus"
    westeurope = "westeurope"
    southeastasia = "southeastasia"
    eastus2 = "eastus2"
    westcentralus = "westcentralus"
    westus2 = "westus2"
    eastus = "eastus"
    southcentralus = "southcentralus"
    northeurope = "northeurope"
    eastasia = "eastasia"
    australiaeast = "australiaeast"
    brazilsouth = "brazilsouth"


class Details(str, Enum):

    celebrities = "Celebrities"
    landmarks = "Landmarks"