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
*BarcodeApi* | [**get_barcode_recognize**](docs/BarcodeApi.md#get_barcode_recognize) | **GET** /barcode/{name}/recognize | Recognize barcode from a file on server.
118
-
*BarcodeApi* | [**post_barcode_recognize_from_url_or_content**](docs/BarcodeApi.md#post_barcode_recognize_from_url_or_content) | **POST** /barcode/recognize | Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image or encoded with base64.
118
+
*BarcodeApi* | [**post_barcode_recognize_from_url_or_content**](docs/BarcodeApi.md#post_barcode_recognize_from_url_or_content) | **POST** /barcode/recognize | Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image with content-type \"application/octet-stream\". An image can also be passed as a form field.
119
119
*BarcodeApi* | [**post_generate_multiple**](docs/BarcodeApi.md#post_generate_multiple) | **POST** /barcode/generateMultiple | Generate multiple barcodes and return in response stream
120
120
*BarcodeApi* | [**put_barcode_generate_file**](docs/BarcodeApi.md#put_barcode_generate_file) | **PUT** /barcode/{name}/generate | Generate barcode and save on server (from query params or from file with json or xml content)
121
121
*BarcodeApi* | [**put_barcode_recognize_from_body**](docs/BarcodeApi.md#put_barcode_recognize_from_body) | **PUT** /barcode/{name}/recognize | Recognition of a barcode from file on server with parameters in body.
Copy file name to clipboardExpand all lines: aspose_barcode_cloud/api/barcode_api.py
+6-6Lines changed: 6 additions & 6 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. # 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
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
@@ -482,7 +482,7 @@ def get_barcode_recognize(
482
482
:param bool skip_diagonal_search: Allows detector to skip search for diagonal barcodes. Setting it to false will increase detection time but allow to find diagonal barcodes that can be missed otherwise. Enabling of diagonal search leads to a bigger detection time. # noqa: E501
483
483
:param bool read_tiny_barcodes: Allows engine to recognize tiny barcodes on large images. Ignored if AllowIncorrectBarcodes is set to True. Default value: False. # noqa: E501
484
484
:param str australian_post_encoding_table: Interpreting Type for the Customer Information of AustralianPost BarCode.Default is CustomerInformationInterpretingType.Other. # noqa: E501
485
-
:param bool ignore_ending_filling_patterns_for_c_table: The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. CTable encoding method does not have any gaps in encoding table and sequnce\"333\" of filling paterns is decoded as letter \"z\". # noqa: E501
485
+
:param bool ignore_ending_filling_patterns_for_c_table: The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. CTable encoding method does not have any gaps in encoding table and sequence\"333\" of filling patterns is decoded as letter \"z\". # noqa: E501
486
486
:param str rectangle_region: # noqa: E501
487
487
:param str storage: The image storage. # noqa: E501
"""Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image or encoded with base64.
813
+
"""Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image with content-type \"application/octet-stream\". An image can also be passed as a form field.
814
814
815
815
This method makes a synchronous HTTP request by default. To make an
: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. # 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
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
:param bool skip_diagonal_search: Allows detector to skip search for diagonal barcodes. Setting it to false will increase detection time but allow to find diagonal barcodes that can be missed otherwise. Enabling of diagonal search leads to a bigger detection time. # noqa: E501
851
851
:param bool read_tiny_barcodes: Allows engine to recognize tiny barcodes on large images. Ignored if AllowIncorrectBarcodes is set to True. Default value: False. # noqa: E501
852
852
:param str australian_post_encoding_table: Interpreting Type for the Customer Information of AustralianPost BarCode.Default is CustomerInformationInterpretingType.Other. # noqa: E501
853
-
:param bool ignore_ending_filling_patterns_for_c_table: The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. CTable encoding method does not have any gaps in encoding table and sequnce\"333\" of filling paterns is decoded as letter \"z\". # noqa: E501
853
+
:param bool ignore_ending_filling_patterns_for_c_table: The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. CTable encoding method does not have any gaps in encoding table and sequence\"333\" of filling patterns is decoded as letter \"z\". # noqa: E501
"""Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image or encoded with base64.
948
+
"""Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image with content-type \"application/octet-stream\". An image can also be passed as a form field.
949
949
950
950
This method makes a synchronous HTTP request by default. To make an
"""Gets the timeout of this ReaderParams. # noqa: E501
475
475
476
-
Timeout of recognition process. # noqa: E501
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
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. # noqa: E501
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
488
488
489
489
:param timeout: The timeout of this ReaderParams. # noqa: E501
"""Gets the ignore_ending_filling_patterns_for_c_table of this ReaderParams. # noqa: E501
1027
1027
1028
-
The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. CTable encoding method does not have any gaps in encoding table and sequnce\"333\" of filling paterns is decoded as letter \"z\". # noqa: E501
1028
+
The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. CTable encoding method does not have any gaps in encoding table and sequence\"333\" of filling patterns is decoded as letter \"z\". # noqa: E501
1029
1029
1030
1030
:return: The ignore_ending_filling_patterns_for_c_table of this ReaderParams. # noqa: E501
"""Sets the ignore_ending_filling_patterns_for_c_table of this ReaderParams.
1038
1038
1039
-
The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. CTable encoding method does not have any gaps in encoding table and sequnce\"333\" of filling paterns is decoded as letter \"z\". # noqa: E501
1039
+
The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. CTable encoding method does not have any gaps in encoding table and sequence\"333\" of filling patterns is decoded as letter \"z\". # noqa: E501
1040
1040
1041
1041
:param ignore_ending_filling_patterns_for_c_table: The ignore_ending_filling_patterns_for_c_table of this ReaderParams. # noqa: E501
0 commit comments