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: README.md
+17-17Lines changed: 17 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,16 +14,16 @@ This repository contains multiple samples that demonstrates how to use the [Dyna
14
14
15
15
### Supported Platforms
16
16
- Windows x64
17
-
- Linux(x64, ARM32, ARM64)
18
-
- macOS(10.15+)
17
+
- Linux(x64, ARM32, ARM64)
18
+
- macOS(10.15+)
19
19
20
20
### Supported Python Versions
21
21
22
-
-Python3.6
23
-
-Python3.7
24
-
-Python3.8
25
-
-Python3.9
26
-
-Python3.10
22
+
-Python 3.6
23
+
-Python 3.7
24
+
-Python 3.8
25
+
-Python 3.9
26
+
-Python 3.10
27
27
28
28
## Installation
29
29
@@ -41,16 +41,16 @@ pip3 install dbr
41
41
42
42
| Sample Name | Description |
43
43
| ----------- | ----------- |
44
-
|[`hello-world`](samples/hello-world.py)|This is a python sample that illustrates the simplest way to recognize barcodes from images with Dynamsoft Barcode Reader SDK. |
45
-
|[`general-settings`](samples/general-settings.py)|This is a python sample that illustrates how to make general settings (including barcode format/barcode count/scan region) when using Dynamsoft Barcode Reader. |
46
-
|[`image-decoding`](samples/image-decoding.py)|This is a python sample that illustrates how to decode images in various format (including file bytes/opencv image/image raw buffer) when using Dynamsoft Barcode Reader. |
47
-
|[`video-decoding`](samples/video-decoding.py)|This is a python sample that illustrates how to decode video from a file or camera when using Dynamsoft Barcode Reader. |
48
-
|[`video-decoding-for-picamera`](samples/video-decoding-for-picamera.py)|This is a python sample that illustrates how to decode videos from PiCamera in the Raspberry Pi when using Dynamsoft Barcode Reader. |
49
-
|[`batch-decode`](samples/performance/batch-decode.py)|This is a python sample that shows how to decode image files in a specified folder. |
50
-
|[`speed-first-settings`](samples/performance/speed-first-settings.py)|This is a python 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. |
51
-
|[`read-rate-first-settings`](samples/performance/read-rate-first-settings.py)|This is a python 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. |
52
-
|[`accuracy-first-settings`](samples/performance/accuracy-first-settings.py)|This is a python 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. |
53
-
|[`read-dpm-barcode`](samples/use-case/read-dpm-barcode.py)|This is a python sample that shows how to configure Dynamsoft Barcode Reader to read DPM barcodes. |
44
+
|[`hello-world`](samples/hello-world.py)|Shows the simplest way to recognize barcodes from images in Python using Dynamsoft Barcode Reader SDK. |
45
+
|[`general-settings`](samples/general-settings.py)|Shows how to adjust general scan settings, e.g., barcode format, barcode count, scan region. |
46
+
|[`image-decoding`](samples/image-decoding.py)|Shows how to decode images in various formats, e.g., file bytes, opencv image, raw image buffer. |
47
+
|[`video-decoding`](samples/video-decoding.py)|Shows how to decode barcodes from a video from a file or camera. |
48
+
|[`video-decoding-for-picamera`](samples/video-decoding-for-picamera.py)|Shows how to scan barcodes from videos from a Raspberry Pi camera (PiCamera). |
49
+
|[`batch-decode`](samples/performance/batch-decode.py)|Shows how to batch decode image files from a specified folder. |
50
+
|[`speed-first-settings`](samples/performance/speed-first-settings.py)|Shows how to configure the scan settings for best barcode reading speed. |
51
+
|[`read-rate-first-settings`](samples/performance/read-rate-first-settings.py)|Shows how to configure the scan settings to read as many barcodes as possible at one time. Recommended when decoding multiple barcodes from a single image. |
52
+
|[`accuracy-first-settings`](samples/performance/accuracy-first-settings.py)|Shows how to configure the scan settings for best barcode reading accuracy. |
53
+
|[`read-dpm-barcode`](samples/use-case/read-dpm-barcode.py)|Shows how to read DPM (Direct Part Mark) barcodes. |
0 commit comments