You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/extras/guide/bank_account_details_v2.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,8 @@
1
1
---
2
2
title: FR Bank Account Details OCR Python
3
+
category: 622b805aaec68102ea7fcbc2
4
+
slug: python-fr-bank-account-details-ocr
5
+
parentDoc: 609808f773b0b90051d839de
3
6
---
4
7
The Python OCR SDK supports the [Bank Account Details API](https://platform.mindee.com/mindee/bank_account_details).
5
8
@@ -25,6 +28,7 @@ print(result.document)
25
28
26
29
# Print the document-level summary
27
30
# print(result.document.inference.prediction)
31
+
28
32
```
29
33
30
34
**Output (RST):**
@@ -70,15 +74,15 @@ Page 0
70
74
## Standard Fields
71
75
These fields are generic and used in several products.
72
76
73
-
### BasicField
77
+
### BaseField
74
78
Each prediction object contains a set of fields that inherit from the generic `BaseField` class.
75
79
A typical `BaseField` object will have the following attributes:
76
80
77
81
***value** (`Union[float, str]`): corresponds to the field value. Can be `None` if no value was extracted.
78
82
***confidence** (`float`): the confidence score of the field prediction.
79
83
***bounding_box** (`[Point, Point, Point, Point]`): contains exactly 4 relative vertices (points) coordinates of a right rectangle containing the field in the document.
80
84
***polygon** (`List[Point]`): contains the relative vertices coordinates (`Point`) of a polygon containing the field in the image.
81
-
***page_id** (`int`): the ID of the page, is`None` when at document-level.
85
+
***page_id** (`int`): the ID of the page, always`None` when at document-level.
82
86
***reconstructed** (`bool`): indicates whether an object was reconstructed (not extracted as the API gave it).
83
87
84
88
> **Note:** A `Point` simply refers to a List of two numbers (`[float, float]`).
Copy file name to clipboardExpand all lines: docs/extras/guide/bank_check_v1.md
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,8 @@
1
1
---
2
2
title: US Bank Check OCR Python
3
+
category: 622b805aaec68102ea7fcbc2
4
+
slug: python-us-bank-check-ocr
5
+
parentDoc: 609808f773b0b90051d839de
3
6
---
4
7
The Python OCR SDK supports the [Bank Check API](https://platform.mindee.com/mindee/bank_check).
5
8
@@ -25,6 +28,7 @@ print(result.document)
25
28
26
29
# Print the document-level summary
27
30
# print(result.document.inference.prediction)
31
+
28
32
```
29
33
30
34
**Output (RST):**
@@ -70,15 +74,15 @@ Page 0
70
74
## Standard Fields
71
75
These fields are generic and used in several products.
72
76
73
-
### BasicField
77
+
### BaseField
74
78
Each prediction object contains a set of fields that inherit from the generic `BaseField` class.
75
79
A typical `BaseField` object will have the following attributes:
76
80
77
81
***value** (`Union[float, str]`): corresponds to the field value. Can be `None` if no value was extracted.
78
82
***confidence** (`float`): the confidence score of the field prediction.
79
83
***bounding_box** (`[Point, Point, Point, Point]`): contains exactly 4 relative vertices (points) coordinates of a right rectangle containing the field in the document.
80
84
***polygon** (`List[Point]`): contains the relative vertices coordinates (`Point`) of a polygon containing the field in the image.
81
-
***page_id** (`int`): the ID of the page, is`None` when at document-level.
85
+
***page_id** (`int`): the ID of the page, always`None` when at document-level.
82
86
***reconstructed** (`bool`): indicates whether an object was reconstructed (not extracted as the API gave it).
83
87
84
88
> **Note:** A `Point` simply refers to a List of two numbers (`[float, float]`).
@@ -106,7 +110,7 @@ The position field `PositionField` does not implement all the basic `BaseField`
106
110
The text field `StringField` only has one constraint: its **value** is an `Optional[str]`.
107
111
108
112
## Page-Level Fields
109
-
Some fields are constrained to the page level, and so will not be retrievable to through the document.
113
+
Some fields are constrained to the page level, and so will not be retrievable at document level.
110
114
111
115
# Attributes
112
116
The following fields are extracted for Bank Check V1:
Copy file name to clipboardExpand all lines: docs/extras/guide/barcode_reader_v1.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,8 @@
1
1
---
2
2
title: Barcode Reader OCR Python
3
+
category: 622b805aaec68102ea7fcbc2
4
+
slug: python-barcode-reader-ocr
5
+
parentDoc: 609808f773b0b90051d839de
3
6
---
4
7
The Python OCR SDK supports the [Barcode Reader API](https://platform.mindee.com/mindee/barcode_reader).
5
8
@@ -25,6 +28,7 @@ print(result.document)
25
28
26
29
# Print the document-level summary
27
30
# print(result.document.inference.prediction)
31
+
28
32
```
29
33
30
34
**Output (RST):**
@@ -60,15 +64,15 @@ Page 0
60
64
## Standard Fields
61
65
These fields are generic and used in several products.
62
66
63
-
### BasicField
67
+
### BaseField
64
68
Each prediction object contains a set of fields that inherit from the generic `BaseField` class.
65
69
A typical `BaseField` object will have the following attributes:
66
70
67
71
***value** (`Union[float, str]`): corresponds to the field value. Can be `None` if no value was extracted.
68
72
***confidence** (`float`): the confidence score of the field prediction.
69
73
***bounding_box** (`[Point, Point, Point, Point]`): contains exactly 4 relative vertices (points) coordinates of a right rectangle containing the field in the document.
70
74
***polygon** (`List[Point]`): contains the relative vertices coordinates (`Point`) of a polygon containing the field in the image.
71
-
***page_id** (`int`): the ID of the page, is`None` when at document-level.
75
+
***page_id** (`int`): the ID of the page, always`None` when at document-level.
72
76
***reconstructed** (`bool`): indicates whether an object was reconstructed (not extracted as the API gave it).
73
77
74
78
> **Note:** A `Point` simply refers to a List of two numbers (`[float, float]`).
Copy file name to clipboardExpand all lines: docs/extras/guide/carte_grise_v1.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,8 @@
1
1
---
2
2
title: FR Carte Grise OCR Python
3
+
category: 622b805aaec68102ea7fcbc2
4
+
slug: python-fr-carte-grise-ocr
5
+
parentDoc: 609808f773b0b90051d839de
3
6
---
4
7
The Python OCR SDK supports the [Carte Grise API](https://platform.mindee.com/mindee/carte_grise).
5
8
@@ -25,6 +28,7 @@ print(result.document)
25
28
26
29
# Print the document-level summary
27
30
# print(result.document.inference.prediction)
31
+
28
32
```
29
33
30
34
**Output (RST):**
@@ -136,15 +140,15 @@ Page 0
136
140
## Standard Fields
137
141
These fields are generic and used in several products.
138
142
139
-
### BasicField
143
+
### BaseField
140
144
Each prediction object contains a set of fields that inherit from the generic `BaseField` class.
141
145
A typical `BaseField` object will have the following attributes:
142
146
143
147
***value** (`Union[float, str]`): corresponds to the field value. Can be `None` if no value was extracted.
144
148
***confidence** (`float`): the confidence score of the field prediction.
145
149
***bounding_box** (`[Point, Point, Point, Point]`): contains exactly 4 relative vertices (points) coordinates of a right rectangle containing the field in the document.
146
150
***polygon** (`List[Point]`): contains the relative vertices coordinates (`Point`) of a polygon containing the field in the image.
147
-
***page_id** (`int`): the ID of the page, is`None` when at document-level.
151
+
***page_id** (`int`): the ID of the page, always`None` when at document-level.
148
152
***reconstructed** (`bool`): indicates whether an object was reconstructed (not extracted as the API gave it).
149
153
150
154
> **Note:** A `Point` simply refers to a List of two numbers (`[float, float]`).
Copy file name to clipboardExpand all lines: docs/extras/guide/carte_vitale_v1.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,8 @@
1
1
---
2
2
title: FR Carte Vitale OCR Python
3
+
category: 622b805aaec68102ea7fcbc2
4
+
slug: python-fr-carte-vitale-ocr
5
+
parentDoc: 609808f773b0b90051d839de
3
6
---
4
7
The Python OCR SDK supports the [Carte Vitale API](https://platform.mindee.com/mindee/carte_vitale).
5
8
@@ -25,6 +28,7 @@ print(result.document)
25
28
26
29
# Print the document-level summary
27
30
# print(result.document.inference.prediction)
31
+
28
32
```
29
33
30
34
**Output (RST):**
@@ -62,15 +66,15 @@ Page 0
62
66
## Standard Fields
63
67
These fields are generic and used in several products.
64
68
65
-
### BasicField
69
+
### BaseField
66
70
Each prediction object contains a set of fields that inherit from the generic `BaseField` class.
67
71
A typical `BaseField` object will have the following attributes:
68
72
69
73
***value** (`Union[float, str]`): corresponds to the field value. Can be `None` if no value was extracted.
70
74
***confidence** (`float`): the confidence score of the field prediction.
71
75
***bounding_box** (`[Point, Point, Point, Point]`): contains exactly 4 relative vertices (points) coordinates of a right rectangle containing the field in the document.
72
76
***polygon** (`List[Point]`): contains the relative vertices coordinates (`Point`) of a polygon containing the field in the image.
73
-
***page_id** (`int`): the ID of the page, is`None` when at document-level.
77
+
***page_id** (`int`): the ID of the page, always`None` when at document-level.
74
78
***reconstructed** (`bool`): indicates whether an object was reconstructed (not extracted as the API gave it).
75
79
76
80
> **Note:** A `Point` simply refers to a List of two numbers (`[float, float]`).
Copy file name to clipboardExpand all lines: docs/extras/guide/cropper_v1.md
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,8 @@
1
1
---
2
2
title: Cropper OCR Python
3
+
category: 622b805aaec68102ea7fcbc2
4
+
slug: python-cropper-ocr
5
+
parentDoc: 609808f773b0b90051d839de
3
6
---
4
7
The Python OCR SDK supports the [Cropper API](https://platform.mindee.com/mindee/cropper).
5
8
@@ -25,6 +28,7 @@ print(result.document)
25
28
26
29
# Print the document-level summary
27
30
# print(result.document.inference.prediction)
31
+
28
32
```
29
33
30
34
**Output (RST):**
@@ -56,15 +60,15 @@ Page 0
56
60
## Standard Fields
57
61
These fields are generic and used in several products.
58
62
59
-
### BasicField
63
+
### BaseField
60
64
Each prediction object contains a set of fields that inherit from the generic `BaseField` class.
61
65
A typical `BaseField` object will have the following attributes:
62
66
63
67
***value** (`Union[float, str]`): corresponds to the field value. Can be `None` if no value was extracted.
64
68
***confidence** (`float`): the confidence score of the field prediction.
65
69
***bounding_box** (`[Point, Point, Point, Point]`): contains exactly 4 relative vertices (points) coordinates of a right rectangle containing the field in the document.
66
70
***polygon** (`List[Point]`): contains the relative vertices coordinates (`Point`) of a polygon containing the field in the image.
67
-
***page_id** (`int`): the ID of the page, is`None` when at document-level.
71
+
***page_id** (`int`): the ID of the page, always`None` when at document-level.
68
72
***reconstructed** (`bool`): indicates whether an object was reconstructed (not extracted as the API gave it).
69
73
70
74
> **Note:** A `Point` simply refers to a List of two numbers (`[float, float]`).
@@ -80,7 +84,7 @@ The position field `PositionField` does not implement all the basic `BaseField`
80
84
***quadrangle** (`[Point, Point, Point, Point]`): a free polygon made up of four points.
81
85
82
86
## Page-Level Fields
83
-
Some fields are constrained to the page level, and so will not be retrievable to through the document.
87
+
Some fields are constrained to the page level, and so will not be retrievable at document level.
84
88
85
89
# Attributes
86
90
The following fields are extracted for Cropper V1:
Copy file name to clipboardExpand all lines: docs/extras/guide/custom_v1.md
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,11 @@
1
1
---
2
-
title: Custom API Python
2
+
title: Custom API Python (Deprecated)
3
+
category: 622b805aaec68102ea7fcbc2
4
+
slug: python-api-builder
5
+
parentDoc: 609808f773b0b90051d839de
3
6
---
7
+
> 🚧 This product is still supported, but is considered to be deprecated. If you are looking for the DocTI API documentation, you can find it [here](https://developers.mindee.com/docs/generated-api-python).
8
+
4
9
The Python OCR SDK supports [custom-built APIs](https://developers.mindee.com/docs/build-your-first-document-parsing-api).
5
10
If your document isn't covered by one of Mindee's Off-the-Shelf APIs, you can create your own API using the[API Builder](https://platform.mindee.com/api-builder).
0 commit comments