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: aspose_barcode_cloud/api/barcode_api.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -458,7 +458,7 @@ def get_barcode_recognize(
458
458
:param int rect_width: Set Width of area for recognition. # noqa: E501
459
459
:param int rect_height: Set Height of area for recognition. # noqa: E501
460
460
:param bool strip_fnc: Value indicating whether FNC symbol strip must be done. # noqa: E501
461
-
:param int timeout: Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout. # noqa: E501
461
+
:param int timeout: Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). Maximum value is 60_000 (1 minute). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout. # noqa: E501
462
462
:param int median_smoothing_window_size: Window size for median smoothing. Typical values are 3 or 4. Default value is 3. AllowMedianSmoothing must be set. # noqa: E501
463
463
:param bool allow_median_smoothing: Allows engine to enable median smoothing as additional scan. Mode helps to recognize noised barcodes. # noqa: E501
464
464
:param bool allow_complex_background: Allows engine to recognize color barcodes on color background as additional scan. Extremely slow mode. # noqa: E501
:param int rect_width: Set Width of area for recognition. # noqa: E501
827
827
:param int rect_height: Set Height of area for recognition. # noqa: E501
828
828
:param bool strip_fnc: Value indicating whether FNC symbol strip must be done. # noqa: E501
829
-
:param int timeout: Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout. # noqa: E501
829
+
:param int timeout: Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). Maximum value is 60_000 (1 minute). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout. # noqa: E501
830
830
:param int median_smoothing_window_size: Window size for median smoothing. Typical values are 3 or 4. Default value is 3. AllowMedianSmoothing must be set. # noqa: E501
831
831
:param bool allow_median_smoothing: Allows engine to enable median smoothing as additional scan. Mode helps to recognize noised barcodes. # noqa: E501
832
832
:param bool allow_complex_background: Allows engine to recognize color barcodes on color background as additional scan. Extremely slow mode. # noqa: E501
"""Gets the timeout of this ReaderParams. # noqa: E501
475
475
476
-
Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout. # noqa: E501
476
+
Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). Maximum value is 60_000 (1 minute). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout. # noqa: E501
477
477
478
478
:return: The timeout of this ReaderParams. # noqa: E501
479
479
:rtype: int
@@ -484,7 +484,7 @@ def timeout(self):
484
484
deftimeout(self, timeout):
485
485
"""Sets the timeout of this ReaderParams.
486
486
487
-
Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout. # noqa: E501
487
+
Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). Maximum value is 60_000 (1 minute). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout. # noqa: E501
488
488
489
489
:param timeout: The timeout of this ReaderParams. # noqa: E501
Copy file name to clipboardExpand all lines: docs/BarcodeApi.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -158,7 +158,7 @@ rect_y = 56 # int | Set Y for area for recognition. (optional)
158
158
rect_width =56# int | Set Width of area for recognition. (optional)
159
159
rect_height =56# int | Set Height of area for recognition. (optional)
160
160
strip_fnc =True# bool | Value indicating whether FNC symbol strip must be done. (optional)
161
-
timeout =56# int | Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout. (optional)
161
+
timeout =56# int | Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). Maximum value is 60_000 (1 minute). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout. (optional)
162
162
median_smoothing_window_size =56# int | Window size for median smoothing. Typical values are 3 or 4. Default value is 3. AllowMedianSmoothing must be set. (optional)
163
163
allow_median_smoothing =True# bool | Allows engine to enable median smoothing as additional scan. Mode helps to recognize noised barcodes. (optional)
164
164
allow_complex_background =True# bool | Allows engine to recognize color barcodes on color background as additional scan. Extremely slow mode. (optional)
@@ -209,7 +209,7 @@ Name | Type | Description | Notes
209
209
**rect_width** | **int**| Set Width of area for recognition. | [optional]
210
210
**rect_height** | **int**| Set Height of area for recognition. | [optional]
211
211
**strip_fnc** | **bool**| Value indicating whether FNC symbol strip must be done. | [optional]
212
-
**timeout** | **int**| Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout. | [optional]
212
+
**timeout** | **int**| Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). Maximum value is 60_000 (1 minute). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout. | [optional]
213
213
**median_smoothing_window_size** | **int**| Window size for median smoothing. Typical values are 3 or 4. Default value is 3. AllowMedianSmoothing must be set. | [optional]
214
214
**allow_median_smoothing** | **bool**| Allows engine to enable median smoothing as additional scan. Mode helps to recognize noised barcodes. | [optional]
215
215
**allow_complex_background** | **bool**| Allows engine to recognize color barcodes on color background as additional scan. Extremely slow mode. | [optional]
@@ -280,7 +280,7 @@ rect_y = 56 # int | Set Y for area for recognition. (optional)
280
280
rect_width =56# int | Set Width of area for recognition. (optional)
281
281
rect_height =56# int | Set Height of area for recognition. (optional)
282
282
strip_fnc =True# bool | Value indicating whether FNC symbol strip must be done. (optional)
283
-
timeout =56# int | Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout. (optional)
283
+
timeout =56# int | Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). Maximum value is 60_000 (1 minute). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout. (optional)
284
284
median_smoothing_window_size =56# int | Window size for median smoothing. Typical values are 3 or 4. Default value is 3. AllowMedianSmoothing must be set. (optional)
285
285
allow_median_smoothing =True# bool | Allows engine to enable median smoothing as additional scan. Mode helps to recognize noised barcodes. (optional)
286
286
allow_complex_background =True# bool | Allows engine to recognize color barcodes on color background as additional scan. Extremely slow mode. (optional)
@@ -330,7 +330,7 @@ Name | Type | Description | Notes
330
330
**rect_width** | **int**| Set Width of area for recognition. | [optional]
331
331
**rect_height** | **int**| Set Height of area for recognition. | [optional]
332
332
**strip_fnc** | **bool**| Value indicating whether FNC symbol strip must be done. | [optional]
333
-
**timeout** | **int**| Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout. | [optional]
333
+
**timeout** | **int**| Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). Maximum value is 60_000 (1 minute). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout. | [optional]
334
334
**median_smoothing_window_size** | **int**| Window size for median smoothing. Typical values are 3 or 4. Default value is 3. AllowMedianSmoothing must be set. | [optional]
335
335
**allow_median_smoothing** | **bool**| Allows engine to enable median smoothing as additional scan. Mode helps to recognize noised barcodes. | [optional]
336
336
**allow_complex_background** | **bool**| Allows engine to recognize color barcodes on color background as additional scan. Extremely slow mode. | [optional]
0 commit comments