Skip to content

Commit 2df8573

Browse files
update to internal commit 815afb99
1 parent f96d53f commit 2df8573

File tree

11 files changed

+101
-32
lines changed

11 files changed

+101
-32
lines changed

_includes/sidelist-programming/programming-cpp.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
</li>
5454
</ul>
5555
</li>
56+
<li lang="cplusplus"><a href="{{ site.dbr_cpp }}samples/index.html" class="otherLinkColour">Samples and Demo</a></li>
5657
<li lang="cplusplus"><a href="{{ site.dbr_cpp_api }}" class="otherLinkColour">API Reference</a>
5758
<ul>
5859
<li><a>DynamsoftCaptureVisionRouter</a>

_includes/sidelist-programming/programming-dotnet.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<li lang="dotnet" class="category">DEVELOPMENT</li>
22
<li lang="dotnet" ><a href="{{ site.dbr_dotnet }}user-guide.html" class="otherLinkColour">User Guide</a></li>
3+
<li lang="dotnet"><a href="{{ site.dbr_dotnet }}samples/index.html" class="otherLinkColour">Samples and Demo</a></li>
34
<li lang="dotnet"><a href="{{ site.dbr_dotnet_api }}" class="otherLinkColour">API Reference</a>
45
<ul>
56
<li><a>DynamsoftCaptureVisionRouter</a>

_includes/sidelist-programming/programming-python.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<li lang="python" class="category">DEVELOPMENT</li>
22
<li lang="python" ><a href="{{ site.dbr_python }}user-guide.html" class="otherLinkColour">User Guide</a></li>
3+
<li lang="python"><a href="{{ site.dbr_python }}samples/index.html" class="otherLinkColour">Samples and Demo</a></li>
34
<li lang="python"><a href="{{ site.dbr_python_api }}" class="otherLinkColour">API Reference</a>
45
<ul>
56
<li><a>DynamsoftCaptureVisionRouter</a>

programming-old/cplusplus/samples/index.md renamed to programming-old/cplusplus/samples/index-v9.6.40.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Samples - Dynamsoft Barcode Reader SDK C++ Edition
44
description: Sample list page of Dynamsoft Barcode Reader C++ Edition.
55
keywords: c++
66
needAutoGenerateSidebar: false
7-
permalink: /programming/cplusplus/samples/index.html
7+
permalink: /programming/cplusplus/samples/index-v9.6.40.html
88
---
99

1010
# Samples and Demos - C++ Edition

programming-old/dotnet/samples/index.md renamed to programming-old/dotnet/samples/index-v9.6.40.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Samples - Dynamsoft Barcode Reader SDK .NET Edition
44
description: Sample list page of Dynamsoft Barcode Reader .NET Edition.
55
keywords: .net
66
needAutoGenerateSidebar: false
7-
permalink: /programming/dotnet/samples/index.html
7+
permalink: /programming/dotnet/samples/index-v9.6.40.html
88
---
99

1010
# Samples and Demos - .NET Edition
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
layout: default-layout
3+
title: Samples - Dynamsoft Barcode Reader SDK Python Edition
4+
description: Sample list page of Dynamsoft Barcode Reader Python Edition.
5+
keywords: python
6+
needAutoGenerateSidebar: false
7+
permalink: /programming/python/samples/index-v9.6.40.html
8+
---
9+
10+
# Samples and Demos - Python Edition
11+
12+
13+
## Samples
14+
15+
| Sample Name | Description |
16+
| --- | --- |
17+
| <a href="https://github.com/Dynamsoft/barcode-reader-python-samples/blob/v9.x/samples/hello-world.py" target="_blank">hello-world</a> | This sample demonstrates the simplest way to read barcodes from an image file and output barcode format and text. |
18+
| <a href="https://github.com/Dynamsoft/barcode-reader-python-samples/blob/v9.x/samples/general-settings.py" target="_blank">general-settings</a> | This sample demonstrates how to configure general used settings and read barcodes from an image file. |
19+
| <a href="https://github.com/Dynamsoft/barcode-reader-python-samples/blob/v9.x/samples/image-decoding.py" target="_blank">image-decoding</a> | This sample demonstrates how to decode images in various format (including Disk File/File Bytes in Memory/Raw Buffer/Base64 String/Bitmap) when using Dynamsoft Barcode Reader. |
20+
| <a href="https://github.com/Dynamsoft/barcode-reader-python-samples/blob/v9.x/samples/video-decoding.py" target="_blank">video-decoding</a> | This is a python sample that illustrates how to decode video from a file or camera when using Dynamsoft Barcode Reader. |
21+
| <a href="https://github.com/Dynamsoft/barcode-reader-python-samples/blob/v9.x/samples/video-decoding-for-picamera.py" target="_blank">video-decoding-for-picamera</a> | This is a python sample that illustrates how to decode videos from PiCamera in the Raspberry Pi when using Dynamsoft Barcode Reader. |
22+
| <a href="https://github.com/Dynamsoft/barcode-reader-python-samples/blob/v9.x/samples/performance/batch-decode.py" target="_blank">batch-decode</a> | This is a python sample that shows how to decode image files in a specified folder. |
23+
| <a href="https://github.com/Dynamsoft/barcode-reader-python-samples/blob/v9.x/samples/performance/speed-first-settings.py" target="_blank">speed-first-settings</a> | This sample demonstrates how to configure Dynamsoft Barcode Reader to read barcodes as fast as possible. The downside is that read-rate and accuracy might be affected. |
24+
| <a href="https://github.com/Dynamsoft/barcode-reader-python-samples/blob/v9.x/samples/performance/read-rate-first-settings.py" target="_blank">read-rate-first-settings</a> | This sample demonstrates 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. |
25+
| <a href="https://github.com/Dynamsoft/barcode-reader-python-samples/blob/v9.x/samples/performance/accuracy-first-settings.py" target="_blank">accuracy-first-settings</a> | This sample demonstrates 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. |
26+
| <a href="https://github.com/Dynamsoft/barcode-reader-python-samples/blob/v9.x/samples/use-case/read-dpm-barcode.py" target="_blank">read-dpm-barcode</a> | This is a python sample that shows how to configure Dynamsoft Barcode Reader to read DPM barcodes. |
27+
28+
## Official Online Demo
29+
This <a href="https://demo.dynamsoft.com/barcode-reader/" target="_blank">Online Demo</a> is an online barcode scanner for all barcode types. All supported parameters are opened for customization to see how Dynamsoft Barcode Reader works in different usage scenarios.

programming-old/python/samples/index.md

Lines changed: 0 additions & 29 deletions
This file was deleted.
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
layout: default-layout
3+
title: Samples - Dynamsoft Barcode Reader SDK C++ Edition
4+
description: Sample list page of Dynamsoft Barcode Reader C++ Edition.
5+
keywords: c++
6+
needAutoGenerateSidebar: false
7+
permalink: /programming/cplusplus/samples/index.html
8+
---
9+
10+
# Samples and Demos - C++ Edition
11+
12+
13+
## Samples
14+
15+
| Sample Name | Description |
16+
| --- | --- |
17+
| <a href="https://github.com/Dynamsoft/barcode-reader-c-cpp-samples/tree/main/Samples/HelloWorld/ReadAnImage" target="_blank">ReadAnImage</a> | This sample demonstrates the simplest way to read barcodes from an image file and output barcode format and text. |
18+
| <a href="https://github.com/Dynamsoft/barcode-reader-c-cpp-samples/tree/main/Samples/HelloWorld/ReadMultipleImages" target="_blank">ReadMultipleImages</a> | This sample demonstrates the simplest way to read barcodes from directory with image files and output barcode format and text. |
19+
| <a href="https://github.com/Dynamsoft/barcode-reader-c-cpp-samples/tree/main/Samples/MultiThreadDecoding" target="_blank">MultiThreadDecoding</a> | This sample demonstrates how to read barcodes and get barcode results in self-managed thread. |
20+
| <a href="https://github.com/Dynamsoft/barcode-reader-c-cpp-samples/tree/main/Samples/VideoDecoding" target="_blank">VideoDecoding</a> | This sample demonstrates how to read barcodes from video frames. |
21+
22+
23+
## Official Online Demo
24+
This <a href="https://demo.dynamsoft.com/barcode-reader/" target="_blank">Online Demo</a> is an online barcode scanner for all barcode types. All supported parameters are opened for customization to see how Dynamsoft Barcode Reader works in different usage scenarios.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
layout: default-layout
3+
title: Samples - Dynamsoft Barcode Reader SDK .NET Edition
4+
description: Sample list page of Dynamsoft Barcode Reader .NET Edition.
5+
keywords: .net
6+
needAutoGenerateSidebar: false
7+
permalink: /programming/dotnet/samples/index.html
8+
---
9+
10+
# Samples and Demos - .NET Edition
11+
12+
13+
## Samples
14+
15+
| Sample Name | Description |
16+
| --- | --- |
17+
| <a href="https://github.com/Dynamsoft/barcode-reader-dotnet-samples/tree/main/Samples/HelloWorld/ReadAnImage" target="_blank">ReadAnImage</a> | This sample demonstrates the simplest way to read barcodes from an image file and output barcode format and text. |
18+
| <a href="https://github.com/Dynamsoft/barcode-reader-dotnet-samples/tree/main/Samples/HelloWorld/ReadMultipleImages" target="_blank">ReadMultipleImages</a> | This sample demonstrates the simplest way to read barcodes from directory with image files and output barcode format and text. |
19+
20+
## Official Online Demo
21+
This <a href="https://demo.dynamsoft.com/barcode-reader/" target="_blank">Online Demo</a> is an online barcode scanner for all barcode types. All supported parameters are opened for customization to see how Dynamsoft Barcode Reader works in different usage scenarios.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
layout: default-layout
3+
title: Samples - Dynamsoft Barcode Reader SDK Python Edition
4+
description: Sample list page of Dynamsoft Barcode Reader Python Edition.
5+
keywords: python
6+
needAutoGenerateSidebar: false
7+
permalink: /programming/python/samples/index.html
8+
---
9+
10+
# Samples and Demos - Python Edition
11+
12+
13+
## Samples
14+
15+
| Sample Name | Description |
16+
| --- | --- |
17+
| <a href="https://github.com/Dynamsoft/barcode-reader-python-samples/blob/master/Samples/read_an_image.py" target="_blank">ReadAnImage</a> | Shows the simplest way to read barcodes from an image file and output barcode format and text. |
18+
| <a href="https://github.com/Dynamsoft/barcode-reader-python-samples/blob/master/Samples/read_multiple_images.py" target="_blank">ReadMultipleImages</a> | Shows the simplest way to read barcodes from directory with image files and output barcode format and text. |
19+
20+
## Official Online Demo
21+
This <a href="https://demo.dynamsoft.com/barcode-reader/" target="_blank">Online Demo</a> is an online barcode scanner for all barcode types. All supported parameters are opened for customization to see how Dynamsoft Barcode Reader works in different usage scenarios.

0 commit comments

Comments
 (0)