Point Klasse
Die x-, y-Koordinate eines Punkts auf einem Begrenzungsrahmen oder Polygon.
Neu in Version 2.1: Unterstützung für to_dict - und from_dict methoden
- Vererbung
-
azure.ai.formrecognizer._models.PointPoint
Konstruktor
Point(x: float, y: float)
Parameter
- x
- y
Methoden
count |
Gibt die Anzahl der Vorkommen von value zurück. |
from_dict |
Konvertiert ein Diktat in der Form eines Punkts in das Modell selbst. |
index |
Gibt den ersten Index des Werts zurück. Löst ValueError aus, wenn der Wert nicht vorhanden ist. |
to_dict |
Gibt eine Diktatdarstellung von Point zurück. |
count
Gibt die Anzahl der Vorkommen von value zurück.
count(value, /)
Positional-Only Parameters
- value
from_dict
Konvertiert ein Diktat in der Form eines Punkts in das Modell selbst.
from_dict(data: Dict) -> Point
Positional-Only Parameters
- value
Parameter
Gibt zurück
Point
Rückgabetyp
index
Gibt den ersten Index des Werts zurück.
Löst ValueError aus, wenn der Wert nicht vorhanden ist.
index(value, start=0, stop=9223372036854775807, /)
Positional-Only Parameters
- value
- start
- stop
to_dict
Gibt eine Diktatdarstellung von Point zurück.
to_dict() -> Dict
Positional-Only Parameters
- value
Gibt zurück
dict
Rückgabetyp
Attribute
x
x-Koordinate
x: float
y
y-Koordinate
y: float
Azure SDK for Python