DocumentBarcode Classe
Oggetto di codice a barre.
- Ereditarietà
-
builtins.objectDocumentBarcode
Costruttore
DocumentBarcode(**kwargs: Any)
Metodi
from_dict |
Converte un valore dict nella forma di un oggetto DocumentBarcode nel modello stesso. |
to_dict |
Restituisce una rappresentazione dict di DocumentBarcode. |
from_dict
Converte un valore dict nella forma di un oggetto DocumentBarcode nel modello stesso.
from_dict(data: Dict[str, Any]) -> DocumentBarcode
Parametri
Nome | Descrizione |
---|---|
data
Necessario
|
Dizionario nella forma di DocumentBarcode. |
Restituisce
Tipo | Descrizione |
---|---|
DocumentBarcode |
to_dict
Restituisce una rappresentazione dict di DocumentBarcode.
to_dict() -> Dict[str, Any]
Restituisce
Tipo | Descrizione |
---|---|
Dict[str, Any] |
Attributi
confidence
Attendibilità dell'estrazione corretta del codice a barre.
confidence: float
kind
Tipo di codice a barre. I valori noti sono "QRCode", "PDF417", "UPCA", "UPCE", "Code39", "Code128", "EAN8", "EAN13", "DataBar", "Code93", "Codabar", "DataBarExpanded", "ITF", "MicroQRCode", "DataMatrix", "MaxiCode".
kind: Literal['QRCode', 'PDF417', 'UPCA', 'UPCE', 'Code39', 'Code128', 'EAN8', 'EAN13', 'DataBar', 'Code93', 'Codabar', 'DataBarExpanded', 'ITF', 'MicroQRCode', 'Aztec', 'DataMatrix', 'MaxiCode']
polygon
Associazione poligono del codice a barre.
polygon: Sequence[Point]
span
Posizione del codice a barre nel contenuto concatenato dell'ordine di lettura.
span: DocumentSpan
value
Valore del codice a barre.
value: str
Azure SDK for Python