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* | [**getBarcodeRecognize**](docs/BarcodeApi.md#getBarcodeRecognize) | **GET** /barcode/{name}/recognize | Recognize barcode from a file on server.
167
-
*BarcodeApi* | [**postBarcodeRecognizeFromUrlOrContent**](docs/BarcodeApi.md#postBarcodeRecognizeFromUrlOrContent) | **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.
167
+
*BarcodeApi* | [**postBarcodeRecognizeFromUrlOrContent**](docs/BarcodeApi.md#postBarcodeRecognizeFromUrlOrContent) | **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.
168
168
*BarcodeApi* | [**postGenerateMultiple**](docs/BarcodeApi.md#postGenerateMultiple) | **POST** /barcode/generateMultiple | Generate multiple barcodes and return in response stream
169
169
*BarcodeApi* | [**putBarcodeGenerateFile**](docs/BarcodeApi.md#putBarcodeGenerateFile) | **PUT** /barcode/{name}/generate | Generate barcode and save on server (from query params or from file with json or xml content)
170
170
*BarcodeApi* | [**putBarcodeRecognizeFromBody**](docs/BarcodeApi.md#putBarcodeRecognizeFromBody) | **PUT** /barcode/{name}/recognize | Recognition of a barcode from file on server with parameters in body.
[**getBarcodeRecognize**](BarcodeApi.md#getBarcodeRecognize) | **GET** /barcode/{name}/recognize | Recognize barcode from a file on server.
9
-
[**postBarcodeRecognizeFromUrlOrContent**](BarcodeApi.md#postBarcodeRecognizeFromUrlOrContent) | **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.
9
+
[**postBarcodeRecognizeFromUrlOrContent**](BarcodeApi.md#postBarcodeRecognizeFromUrlOrContent) | **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.
10
10
[**postGenerateMultiple**](BarcodeApi.md#postGenerateMultiple) | **POST** /barcode/generateMultiple | Generate multiple barcodes and return in response stream
11
11
[**putBarcodeGenerateFile**](BarcodeApi.md#putBarcodeGenerateFile) | **PUT** /barcode/{name}/generate | Generate barcode and save on server (from query params or from file with json or xml content)
12
12
[**putBarcodeRecognizeFromBody**](BarcodeApi.md#putBarcodeRecognizeFromBody) | **PUT** /barcode/{name}/recognize | Recognition of a barcode from file on server with parameters in body.
@@ -147,7 +147,7 @@ Name | Type | Description | Notes
147
147
**rectWidth** | **Integer**| Set Width of area for recognition. | [optional]
148
148
**rectHeight** | **Integer**| Set Height of area for recognition. | [optional]
149
149
**stripFNC** | **Boolean**| Value indicating whether FNC symbol strip must be done. | [optional]
150
-
**timeout** | **Integer**| Timeout of recognition process. | [optional]
150
+
**timeout** | **Integer**| 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]
151
151
**medianSmoothingWindowSize** | **Integer**| Window size for median smoothing. Typical values are 3 or 4. Default value is 3. AllowMedianSmoothing must be set. | [optional]
152
152
**allowMedianSmoothing** | **Boolean**| Allows engine to enable median smoothing as additional scan. Mode helps to recognize noised barcodes. | [optional]
153
153
**allowComplexBackground** | **Boolean**| Allows engine to recognize color barcodes on color background as additional scan. Extremely slow mode. | [optional]
@@ -171,7 +171,7 @@ Name | Type | Description | Notes
171
171
**skipDiagonalSearch** | **Boolean**| 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. | [optional]
172
172
**readTinyBarcodes** | **Boolean**| Allows engine to recognize tiny barcodes on large images. Ignored if AllowIncorrectBarcodes is set to True. Default value: False. | [optional]
173
173
**australianPostEncodingTable** | **String**| Interpreting Type for the Customer Information of AustralianPost BarCode.Default is CustomerInformationInterpretingType.Other. | [optional][enum: CTable, NTable, Other]
174
-
**ignoreEndingFillingPatternsForCTable** | **Boolean**| 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\". | [optional]
174
+
**ignoreEndingFillingPatternsForCTable** | **Boolean**| 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\". | [optional]
175
175
**rectangleRegion** | **String**| | [optional]
176
176
**storage** | **String**| The image storage. | [optional]
177
177
**folder** | **String**| The image folder. | [optional]
@@ -184,7 +184,7 @@ Name | Type | Description | Notes
Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image or encoded with base64.
187
+
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.
188
188
189
189
### postBarcodeRecognizeFromUrlOrContent example
190
190
@@ -230,7 +230,7 @@ Name | Type | Description | Notes
230
230
**rectWidth** | **Integer**| Set Width of area for recognition. | [optional]
231
231
**rectHeight** | **Integer**| Set Height of area for recognition. | [optional]
232
232
**stripFNC** | **Boolean**| Value indicating whether FNC symbol strip must be done. | [optional]
233
-
**timeout** | **Integer**| Timeout of recognition process. | [optional]
233
+
**timeout** | **Integer**| 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]
234
234
**medianSmoothingWindowSize** | **Integer**| Window size for median smoothing. Typical values are 3 or 4. Default value is 3. AllowMedianSmoothing must be set. | [optional]
235
235
**allowMedianSmoothing** | **Boolean**| Allows engine to enable median smoothing as additional scan. Mode helps to recognize noised barcodes. | [optional]
236
236
**allowComplexBackground** | **Boolean**| Allows engine to recognize color barcodes on color background as additional scan. Extremely slow mode. | [optional]
@@ -254,7 +254,7 @@ Name | Type | Description | Notes
254
254
**skipDiagonalSearch** | **Boolean**| 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. | [optional]
255
255
**readTinyBarcodes** | **Boolean**| Allows engine to recognize tiny barcodes on large images. Ignored if AllowIncorrectBarcodes is set to True. Default value: False. | [optional]
256
256
**australianPostEncodingTable** | **String**| Interpreting Type for the Customer Information of AustralianPost BarCode.Default is CustomerInformationInterpretingType.Other. | [optional][enum: CTable, NTable, Other]
257
-
**ignoreEndingFillingPatternsForCTable** | **Boolean**| 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\". | [optional]
257
+
**ignoreEndingFillingPatternsForCTable** | **Boolean**| 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\". | [optional]
258
258
**rectangleRegion** | **String**| | [optional]
259
259
**url** | **String**| The image file url. | [optional]
Copy file name to clipboardExpand all lines: docs/ReaderParams.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Name | Type | Description | Notes
13
13
**rectWidth** | **Integer** | Set Width of area for recognition. | [optional]
14
14
**rectHeight** | **Integer** | Set Height of area for recognition. | [optional]
15
15
**stripFNC** | **Boolean** | Value indicating whether FNC symbol strip must be done. | [optional]
16
-
**timeout** | **Integer** | Timeout of recognition process. | [optional]
16
+
**timeout** | **Integer** | 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]
17
17
**medianSmoothingWindowSize** | **Integer** | Window size for median smoothing. Typical values are 3 or 4. Default value is 3. AllowMedianSmoothing must be set. | [optional]
18
18
**allowMedianSmoothing** | **Boolean** | Allows engine to enable median smoothing as additional scan. Mode helps to recognize noised barcodes. | [optional]
19
19
**allowComplexBackground** | **Boolean** | Allows engine to recognize color barcodes on color background as additional scan. Extremely slow mode. | [optional]
@@ -37,7 +37,7 @@ Name | Type | Description | Notes
37
37
**skipDiagonalSearch** | **Boolean** | 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. | [optional]
38
38
**readTinyBarcodes** | **Boolean** | Allows engine to recognize tiny barcodes on large images. Ignored if AllowIncorrectBarcodes is set to True. Default value: False. | [optional]
39
39
**australianPostEncodingTable** | [**CustomerInformationInterpretingType**](CustomerInformationInterpretingType.md) | Interpreting Type for the Customer Information of AustralianPost BarCode.Default is CustomerInformationInterpretingType.Other. | [optional]
40
-
**ignoreEndingFillingPatternsForCTable** | **Boolean** | 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\". | [optional]
40
+
**ignoreEndingFillingPatternsForCTable** | **Boolean** | 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\". | [optional]
Copy file name to clipboardExpand all lines: src/main/java/com/aspose/barcode/cloud/model/ReaderParams.java
+9-5Lines changed: 9 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -274,11 +274,15 @@ public void setStripFNC(Boolean stripFNC) {
274
274
}
275
275
276
276
/**
277
-
* Timeout of recognition process.
277
+
* Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). In case
278
+
* of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to
279
+
* avoid timeout.
278
280
*
279
281
* @return timeout
280
282
*/
281
-
@ApiModelProperty(value = "Timeout of recognition process.")
283
+
@ApiModelProperty(
284
+
value =
285
+
"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.")
282
286
publicIntegergetTimeout() {
283
287
returntimeout;
284
288
}
@@ -693,14 +697,14 @@ public void setAustralianPostEncodingTable(
693
697
/**
694
698
* The flag which force AustraliaPost decoder to ignore last filling patterns in Customer
695
699
* Information Field during decoding as CTable method. CTable encoding method does not have any
696
-
* gaps in encoding table and sequnce \"333\" of filling paterns is decoded as letter
697
-
* \"z\".
700
+
* gaps in encoding table and sequence \"333\" of filling patterns is decoded as
701
+
* letter \"z\".
698
702
*
699
703
* @return ignoreEndingFillingPatternsForCTable
700
704
*/
701
705
@ApiModelProperty(
702
706
value =
703
-
"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\".")
707
+
"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\".")
0 commit comments