Skip to content

Commit d9c075b

Browse files
update to v9.6.40
1 parent a938ebe commit d9c075b

File tree

10 files changed

+788
-9
lines changed

10 files changed

+788
-9
lines changed

LICENSE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
License Notice
22

3-
This folder contains code samples ("Sample Code") for use with Dynamsoft Barcode Reader, a commercial software development kit licensed by Dynamsoft. The Sample Code may be modified and included in your end user software under the terms of the Dynamsoft Software License Agreement https://www.dynamsoft.com/barcode-reader/license-agreement/ ("Commercial License"). Except as expressly stated in the Commercial License, no other rights are granted in the Sample Code. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3+
This folder contains code samples ("Sample Code") for use with Dynamsoft Barcode Reader, a commercial software development kit licensed by Dynamsoft. The Sample Code may be modified and included in your end user software under the terms of the Dynamsoft Software License Agreement https://www.dynamsoft.com/company/license-agreement/ ("Commercial License"). Except as expressly stated in the Commercial License, no other rights are granted in the Sample Code. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
44

5-
Copyright © 2003–2023 Dynamsoft. All rights reserved.
5+
Copyright © 2003–2024 Dynamsoft. All rights reserved.

Legal.txt

Lines changed: 778 additions & 0 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ This repository contains multiple samples that demonstrates how to use the [Dyna
2222
| [`SpeedFirstSettings`](samples/Performance/SpeedFirstSettings) | This is a Java sample that shows how to configure Dynamsoft Barcode Reader to read barcodes as fast as possible. The downside is that read-rate and accuracy might be affected. |
2323
| [`ReadRateFirstSettings`](samples/Performance/ReadRateFirstSettings) | This is a Java sample that shows how to configure Dynamsoft Barcode Reader to read as many barcodes as possible at one time. The downside is that speed and accuracy might be affected. It is recommended to apply these configurations when decoding multiple barcodes from a single image. |
2424
| [`AccuracyFirstSettings`](samples/Performance/AccuracyFirstSettings)` | This is a Java sample that shows how to configure Dynamsoft Barcode Reader to read barcodes as accurately as possible. The downside is that speed and read-rate might be affected. It is recommended to apply these configurations when misreading is unbearable. |
25+
| [`DecodeWithConcurrentInstance`](samples/DecodeWithConcurrentInstance)` | This sample demonstrates how to decode barcodes in concurrent instance mode. |
2526

2627
## License
2728

samples/GeneralSettings/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<dependency>
1717
<groupId>com.dynamsoft</groupId>
1818
<artifactId>dbr</artifactId>
19-
<version>9.6.30</version>
19+
<version>9.6.40</version>
2020
</dependency>
2121
</dependencies>
2222

samples/HelloWorld/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<dependency>
1717
<groupId>com.dynamsoft</groupId>
1818
<artifactId>dbr</artifactId>
19-
<version>9.6.30</version>
19+
<version>9.6.40</version>
2020
</dependency>
2121
</dependencies>
2222

samples/ImageDecoding/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<dependency>
1717
<groupId>com.dynamsoft</groupId>
1818
<artifactId>dbr</artifactId>
19-
<version>9.6.30</version>
19+
<version>9.6.40</version>
2020
</dependency>
2121
</dependencies>
2222

samples/Performance/AccuracyFirstSettings/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<dependency>
1717
<groupId>com.dynamsoft</groupId>
1818
<artifactId>dbr</artifactId>
19-
<version>9.6.30</version>
19+
<version>9.6.40</version>
2020
</dependency>
2121
</dependencies>
2222

samples/Performance/ReadRateFirstSettings/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<dependency>
1717
<groupId>com.dynamsoft</groupId>
1818
<artifactId>dbr</artifactId>
19-
<version>9.6.30</version>
19+
<version>9.6.40</version>
2020
</dependency>
2121
</dependencies>
2222

samples/Performance/ReadRateFirstSettings/src/main/java/ReadRateFirstSettings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ private static void configReadRateFirst(BarcodeReader dbr) throws BarcodeReaderE
3131
// DeblurModes are all enabled as default. Barcode reader will automatically switch between the modes and try decoding continuously until timeout or the expected barcode count is reached.
3232
// Please manually update the enabled modes list or change the expected barcode count to promote the barcode scanning speed.
3333
//Read more about deblur mode members: https://www.dynamsoft.com/barcode-reader/parameters/enum/parameter-mode-enums.html#deblurmode
34-
sts.deblurModes = new int[]{EnumDeblurMode.DM_DIRECT_BINARIZATION,EnumDeblurMode.DM_THRESHOLD_BINARIZATION,EnumDeblurMode.DM_GRAYE_EQULIZATION,
34+
sts.deblurModes = new int[]{EnumDeblurMode.DM_DIRECT_BINARIZATION,EnumDeblurMode.DM_THRESHOLD_BINARIZATION,EnumDeblurMode.DM_GRAY_EQUALIZATION,
3535
EnumDeblurMode.DM_SMOOTHING,EnumDeblurMode.DM_MORPHING,EnumDeblurMode.DM_DEEP_ANALYSIS,EnumDeblurMode.DM_SHARPENING,0,0,0};
3636

3737
// Parameter 6. Set scale up modes.

samples/Performance/SpeedFirstSettings/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<dependency>
1717
<groupId>com.dynamsoft</groupId>
1818
<artifactId>dbr</artifactId>
19-
<version>9.6.30</version>
19+
<version>9.6.40</version>
2020
</dependency>
2121
</dependencies>
2222

0 commit comments

Comments
 (0)