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: programming/android/release-notes/android-11.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,21 +16,21 @@ noTitleIndex: true
16
16
17
17
#### AI-Powered Barcode Detection and Decoding
18
18
19
-
-**PDF417 Localization Model** – Introduces the `PDF417Localization` neural network model for improved detection of PDF417 barcodes, especially in challenging conditions.
20
-
-**Code39/ITF Decoding Model** – Adds the `Code39ITFDecoder` model for enhanced decoding of Code 39 and ITF barcodes under blur or low-resolution conditions.
21
-
-**Deblur Models for 2D Barcodes** – New`DataMatrixQRCodeDeblur` and `PDF417Deblur` models provide more effective recovery from motion and focus blur for DataMatrix, QR Code, and PDF417 barcodes.
19
+
-**PDF417 Localization Model** – Introduces the `PDF417Localization` neural network model for improved detection of PDF417 barcodes, especially under challenging conditions.
20
+
-**Code39/ITF Decoding Model** – Adds the `Code39ITFDecoder` model for enhanced decoding of Code 39 and ITF barcodes under blurred or low-resolution conditions.
21
+
-**Deblur Models for 2D Barcodes** – Adds the`DataMatrixQRCodeDeblur` and `PDF417Deblur` models provide more effective recovery from motion and focus blur for DataMatrix, QR Code, and PDF417 barcodes.
22
22
23
23
#### ECI (Extended Channel Interpretation) Support
24
24
25
-
-**ECI Information Return** – Added support for retrieving Extended Channel Interpretation (ECI) data from barcodes. The new [`ECISegment`]({{ site.dbr_android_api }}eci-segment.html) class along with [`getECISegments`]({{ site.dbr_android_api }}barcode-result-item.html#getecisegments) method in [`BarcodeResultItem`]({{ site.dbr_android_api }}barcode-result-item.html) class enable access to character encoding information embedded in barcodes.
26
-
-**Automatic UTF-8 Conversion** – Barcode text is now automatically converted to UTF-8 based on ECI segments when available, improving compatibility with international character sets.
25
+
-**ECI Information Return** – Adds support for retrieving Extended Channel Interpretation (ECI) data from barcodes. The new [`ECISegment`]({{ site.dbr_android_api }}eci-segment.html) class, along with [`getECISegments`]({{ site.dbr_android_api }}barcode-result-item.html#getecisegments) method in [`BarcodeResultItem`]({{ site.dbr_android_api }}barcode-result-item.html) class, enable access to character encoding information embedded in barcodes.
26
+
-**ECI-Based Text Interpretation** – Adds support for interpreting ECI segments during barcode decoding, improving compatibility with international character sets.
27
27
28
28
#### Performance Improvements
29
29
30
-
-**On-Demand Model Loading** – Implemented lazy loading for AI models, reducing initialization time by loading models only when first needed.
30
+
-**On-Demand Model Loading** – Implements lazy loading for AI models, reducing initialization time by loading models only when first needed.
31
31
-**Smart Model Selection** – Models are now loaded based on configured barcode formats, minimizing memory usage by excluding unused models.
32
-
-**Improved Confidence Scoring** – Enhanced confidence score calculation for results from neural network models, providing more accurate quality indicators.
33
-
-**DPM Barcode Optimization** – Improved recognition rate for Direct Part Marking (DPM) barcodes commonly used in industrial and manufacturing environments.
32
+
-**Improved Confidence Scoring** – Enhances confidence score calculation for results from neural network models, providing more accurate quality indicators.
33
+
-**DPM Barcode Optimization** – Improves recognition rate for Direct Part Marking (DPM) barcodes commonly used in industrial and manufacturing environments.
34
34
35
35
### New
36
36
@@ -43,12 +43,12 @@ noTitleIndex: true
43
43
44
44
- Barcode text encoding fallback changed from UTF-8 to ISO-8859-1 when no ECI information is present in the barcode.
45
45
- Updated default value of `compensation` parameter in [`ImageProcessor.convertToBinaryLocal`]({{ site.dcv_android_api }}utility/image-processor.html#converttobinarylocal) from 0 to 10.
46
-
-[`ImageProcessor.convertToBinaryGlobal`]({{ site.dcv_android_api }}utility/image-processor.html#converttobinaryglobal) and [`convertToBinaryLocal`]({{ site.dcv_android_api }}utility/image-processor.html#converttobinarylocal) now support color and binary images as input in addition to grayscale images.
46
+
-[`convertToBinaryGlobal`]({{ site.dcv_android_api }}utility/image-processor.html#converttobinaryglobal) and [`convertToBinaryLocal`]({{ site.dcv_android_api }}utility/image-processor.html#converttobinarylocal) of `ImageProcessor` class now support color and binary images as input in addition to grayscale images.
47
47
48
-
### Deprecated
48
+
### Removed
49
49
50
-
-`DataMatrixModuleIsotropic` parameter – use [`BarcodeZoneWidthToHeightRatioRangeArray`]({{ site.dcvb_parameters_reference }}barcode-format-specification/barcode-zone-width-to-height-ratio-range-array.html) instead.
51
-
-`MinRatioOfBarcodeZoneWidthToHeight` parameter – use [`BarcodeZoneWidthToHeightRatioRangeArray`]({{ site.dcvb_parameters_reference }}barcode-format-specification/barcode-zone-width-to-height-ratio-range-array.html) instead.
50
+
-Removed `DataMatrixModuleIsotropic` parameter – use [`BarcodeZoneWidthToHeightRatioRangeArray`]({{ site.dcvb_parameters_reference }}barcode-format-specification/barcode-zone-width-to-height-ratio-range-array.html) instead.
51
+
-Removed `MinRatioOfBarcodeZoneWidthToHeight` parameter – use [`BarcodeZoneWidthToHeightRatioRangeArray`]({{ site.dcvb_parameters_reference }}barcode-format-specification/barcode-zone-width-to-height-ratio-range-array.html) instead.
Copy file name to clipboardExpand all lines: programming/objectivec-swift/release-notes/ios-11.md
+16-18Lines changed: 16 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,45 +10,43 @@ noTitleIndex: true
10
10
11
11
# Release Notes for iOS SDK - 11.x
12
12
13
-
## 11.4.1000 (02/05/2026)
14
-
15
13
### Highlights
16
14
17
15
#### AI-Powered Barcode Detection and Decoding
18
16
19
-
-**PDF417 Localization Model** – Introduces the `PDF417Localization` neural network model for improved detection of PDF417 barcodes, especially in challenging conditions.
20
-
-**Code39/ITF Decoding Model** – Adds the `Code39ITFDecoder` model for enhanced decoding of Code 39 and ITF barcodes under blur or low-resolution conditions.
21
-
-**Deblur Models for 2D Barcodes** – New`DataMatrixQRCodeDeblur` and `PDF417Deblur` models provide more effective recovery from motion and focus blur for DataMatrix, QR Code, and PDF417 barcodes.
17
+
-**PDF417 Localization Model** – Introduces the `PDF417Localization` neural network model for improved detection of PDF417 barcodes, especially under challenging conditions.
18
+
-**Code39/ITF Decoding Model** – Adds the `Code39ITFDecoder` model for enhanced decoding of Code 39 and ITF barcodes under blurred or low-resolution conditions.
19
+
-**Deblur Models for 2D Barcodes** – Adds the`DataMatrixQRCodeDeblur` and `PDF417Deblur` models provide more effective recovery from motion and focus blur for DataMatrix, QR Code, and PDF417 barcodes.
22
20
23
21
#### ECI (Extended Channel Interpretation) Support
24
22
25
-
-**ECI Information Return** – Added support for retrieving Extended Channel Interpretation (ECI) data from barcodes. The new [`DSECISegment`]({{ site.dbr_ios_api }}eci-segment.html) class along with [`getECISegments`]({{ site.dbr_ios_api }}barcode-result-item.html#getecisegments) method in [`DSBarcodeResultItem`]({{ site.dbr_ios_api }}barcode-result-item.html) class enable access to character encoding information embedded in barcodes.
26
-
-**Automatic UTF-8 Conversion** – Barcode text is now automatically converted to UTF-8 based on ECI segments when available, improving compatibility with international character sets.
23
+
-**ECI Information Return** – Adds support for retrieving Extended Channel Interpretation (ECI) data from barcodes. The new [`DSECISegment`]({{ site.dbr_ios_api }}eci-segment.html) class, along with [`getECISegments`]({{ site.dbr_ios_api }}barcode-result-item.html#getecisegments) method in [`DSBarcodeResultItem`]({{ site.dbr_ios_api }}barcode-result-item.html) class, enable access to character encoding information embedded in barcodes.
24
+
-**ECI-Based Text Interpretation** – Adds support for interpreting ECI segments during barcode decoding, improving compatibility with international character sets.
27
25
28
26
#### Performance Improvements
29
27
30
-
-**On-Demand Model Loading** – Implemented lazy loading for AI models, reducing initialization time by loading models only when first needed.
28
+
-**On-Demand Model Loading** – Implements lazy loading for AI models, reducing initialization time by loading models only when first needed.
31
29
-**Smart Model Selection** – Models are now loaded based on configured barcode formats, minimizing memory usage by excluding unused models.
32
-
-**Improved Confidence Scoring** – Enhanced confidence score calculation for results from neural network models, providing more accurate quality indicators.
33
-
-**DPM Barcode Optimization** – Improved recognition rate for Direct Part Marking (DPM) barcodes commonly used in industrial and manufacturing environments.
30
+
-**Improved Confidence Scoring** – Enhances confidence score calculation for results from neural network models, providing more accurate quality indicators.
31
+
-**DPM Barcode Optimization** – Improves recognition rate for Direct Part Marking (DPM) barcodes commonly used in industrial and manufacturing environments.
34
32
35
33
### New
36
34
37
35
- Added [`BarcodeZoneWidthToHeightRatioRangeArray`]({{ site.dcvb_parameters_reference }}barcode-format-specification/barcode-zone-width-to-height-ratio-range-array.html) parameter for filtering barcodes based on aspect ratio constraints.
38
-
- Added [`setResultCrossVerificationCriteria`]({{ site.dcvb_ios_api }}utility/multi-frame-result-cross-filter.html#setresultcrossverificationcriteria) and [`getResultCrossVerificationCriteria`]({{ site.dcvb_ios_api }}utility/multi-frame-result-cross-filter.html#getresultcrossverificationcriteria) methods to [`DSMultiFrameResultCrossFilter`]({{ site.dcvb_ios_api }}utility/multi-frame-result-cross-filter.html) for configurable multi-frame result verification.
39
-
- Added a new resolution [`RESOLUTION_MAX`]({{ site.dce_ios }}enum/resolution.html) for capturing photos at maximum resolution (3024*4032).
40
-
- Added a new listener [`DSFocusListener`]({{ site.dce_ios }}auxiliary-api/interface-focus-listener.html) for receiving callback when the camera focus is completed. You can register the listener via [`DSCameraEnhancer.setFocusListener`]({{ site.dce_ios }}primary-api/camera-enhancer.html#setfocuslistener).
36
+
- Added [`setResultCrossVerificationCriteria`]({{ site.dcv_ios_api }}utility/multi-frame-result-cross-filter.html#setresultcrossverificationcriteria) and [`getResultCrossVerificationCriteria`]({{ site.dcv_ios_api }}utility/multi-frame-result-cross-filter.html#getresultcrossverificationcriteria) methods to [`DSMultiFrameResultCrossFilter`]({{ site.dcv_ios_api }}utility/multi-frame-result-cross-filter.html) for configurable multi-frame result verification.
37
+
- Added a new resolution [`DSResolutionMax`]({{ site.dce_ios_api }}enum/resolution.html) for capturing photos at maximum resolution (3024*4032).
38
+
- Added a new listener [`FocusListener`]({{ site.dce_ios_api }}auxiliary-api/interface-focus-listener.html) for receiving callback when the camera focus is completed. You can register the listener via [`setFocusListener`]({{ site.dce_ios_api }}primary-api/camera-enhancer.html#setfocuslistener) method of `DSCameraEnhancer` class.
41
39
42
40
### Changed
43
41
44
42
- Barcode text encoding fallback changed from UTF-8 to ISO-8859-1 when no ECI information is present in the barcode.
45
-
- Updated default value of `compensation` parameter in [`DSImageProcessor.convertToBinaryLocal`]({{ site.dcvb_ios_api }}utility/image-processor.html#converttobinarylocal) from 0 to 10.
46
-
-[`DSImageProcessor.convertToBinaryGlobal`]({{ site.dcvb_ios_api }}utility/image-processor.html#converttobinaryglobal) and [`convertToBinaryLocal`]({{ site.dcvb_ios_api }}utility/image-processor.html#converttobinarylocal) now support color and binary images as input in addition to grayscale images.
43
+
- Updated default value of `compensation` parameter in [`DSImageProcessor.convertToBinaryLocal`]({{ site.dcv_ios_api }}utility/image-processor.html#converttobinarylocal) from 0 to 10.
44
+
-[`convertToBinaryGlobal`]({{ site.dcv_ios_api }}utility/image-processor.html#converttobinaryglobal) and [`convertToBinaryLocal`]({{ site.dcv_ios_api }}utility/image-processor.html#converttobinarylocal) of `DSImageProcessor` class now support color and binary images as input in addition to grayscale images.
47
45
48
-
### Deprecated
46
+
### Removed
49
47
50
-
-`DataMatrixModuleIsotropic` parameter – use [`BarcodeZoneWidthToHeightRatioRangeArray`]({{ site.dcvb_parameters_reference }}barcode-format-specification/barcode-zone-width-to-height-ratio-range-array.html) instead.
51
-
-`MinRatioOfBarcodeZoneWidthToHeight` parameter – use [`BarcodeZoneWidthToHeightRatioRangeArray`]({{ site.dcvb_parameters_reference }}barcode-format-specification/barcode-zone-width-to-height-ratio-range-array.html) instead.
48
+
-Removed `DataMatrixModuleIsotropic` parameter – use [`BarcodeZoneWidthToHeightRatioRangeArray`]({{ site.dcvb_parameters_reference }}barcode-format-specification/barcode-zone-width-to-height-ratio-range-array.html) instead.
49
+
-Removed `MinRatioOfBarcodeZoneWidthToHeight` parameter – use [`BarcodeZoneWidthToHeightRatioRangeArray`]({{ site.dcvb_parameters_reference }}barcode-format-specification/barcode-zone-width-to-height-ratio-range-array.html) instead.
0 commit comments