当前位置:网站首页>How to optimize the decoding performance of dynamsoft barcode reader
How to optimize the decoding performance of dynamsoft barcode reader
2020-11-06 22:28:00 【roffey】
Dynamsoft Barcode Reader SDK A multifunctional barcode reading control , It only needs a few lines of code to embed the barcode reading function into Web Or desktop applications . This can save months of development time and cost . It can support multiple image file formats as well as those obtained from cameras or scanners DIB Format . Use Dynamsoft Barcode Reader SDK, You can create powerful and practical barcode scanner software , To meet your business needs .
Click to download Dynamsoft Barcode Reader The latest version
Many companies like to use Dynamsoft Barcode Reader SDK, Because it has flexible parameter configuration and powerful decoding ability for multiple barcodes . In this paper , Let's take a look at the bar code SDK Templates and possible ways to optimize decoding performance from a developer's point of view .
How to configure the template for decoding performance
If you've never tried Dynamsoft Barcode Reader SDK, You can play in the online bar code playground , Just change the mode to directly compare performance differences .
Besides , If you're an expert , You can click Advanced settings to adjust a series of parameters .
For the convenience of developers , I asked Github Five useful template files have been uploaded :
- Speed.json
- Balanced.json
- Coverage.json
- Morecoverage.json
- Mostcoverage.json
Decoding speed or decoding accuracy ? You can weigh the trade-offs , It depends on the specific usage scheme .
This is my test image :
Let's look at the detection accuracy and time cost of using different templates :
BarcodeReader.exe AllSupportedBarcodeTypes.png license.txt speed.json
Total barcode(s) found: 12. Time cost: 63 ms
BarcodeReader.exe AllSupportedBarcodeTypes.png license.txt balanced.json
Total barcode(s) found: 13. Time cost: 140 ms
BarcodeReader.exe AllSupportedBarcodeTypes.png license.txt coverage.json
Total barcode(s) found: 13. Time cost: 844 ms
BarcodeReader.exe AllSupportedBarcodeTypes.png license.txt morecoverage.json
Total barcode(s) found: 13. Time cost: 1610 ms
BarcodeReader.exe AllSupportedBarcodeTypes.png license.txt mostcoverage.json
Total barcode(s) found: 13. Time cost: 3156 ms
As far as I'm concerned , To ensure the accuracy and decoding speed , The most appropriate template is balance.json.
Can multithreading speed up the performance of multi barcode decoding ?
According to our common sense , The time cost of decoding a single barcode should be less than that of decoding multiple barcodes . therefore , One possible optimization for reading multiple barcodes is to create multiple worker threads , To process different barcode symbols at the same time .
This is the code used to decode one-dimensional and two-dimensional barcodes in sequence :
barcode_decoding(buffer, size, BF_CODE_39, 1, license, config);
barcode_decoding(buffer, size, BF_QR_CODE, 1, license, config);
barcode_decoding(buffer, size, BF_PDF417, 1, license, config);
barcode_decoding(buffer, size, BF_DATAMATRIX, 1, license, config);
The total time cost is 407 millisecond :
Thread id: 22536. Type: CODE_39
Thread id: 22536. Total barcode(s) found: 1. Time cost: 235 ms
Thread id: 22536. Type: QR_CODE
Thread id: 22536. Total barcode(s) found: 1. Time cost: 47 ms
Thread id: 22536. Type: PDF417
Thread id: 22536. Total barcode(s) found: 1. Time cost: 62 ms
Thread id: 22536. Type: DATAMATRIX
Thread id: 22536. Total barcode(s) found: 1. Time cost: 63 ms
In order to optimize decoding performance , I can create four threads to perform the same operation :
int starttime = gettime();
thread t1(barcode_decoding, buffer, size, BF_CODE_39, 1, license, config);
thread t2(barcode_decoding, buffer, size, BF_QR_CODE, 1, license, config);
thread t3(barcode_decoding, buffer, size, BF_PDF417, 1, license, config);
thread t4(barcode_decoding, buffer, size, BF_DATAMATRIX, 1, license, config);
t1.join();
t2.join();
t3.join();
t4.join();
int endtime = gettime();
printf("Thread time cost: %d ms\n\n", (endtime - starttime));
The final time cost is 265 millisecond :
Thread id: 24024. Type: QR_CODE
Thread id: 24024. Total barcode(s) found: 1. Time cost: 78 ms
Thread id: 17384. Type: DATAMATRIX
Thread id: 17384. Total barcode(s) found: 1. Time cost: 78 ms
Thread id: 24264. Type: PDF417
Thread id: 24264. Total barcode(s) found: 1. Time cost: 94 ms
Thread id: 4060. Type: CODE_39
Thread id: 4060. Total barcode(s) found: 1. Time cost: 265 ms
Thread time cost: 265 ms
up to now , It seems pretty good . however , If you pass multiple barcode types to Dynamsoft Barcode decoding API, Then something magical will happen :
barcode_decoding(buffer, size, BF_CODE_39 | BF_DATAMATRIX | BF_QR_CODE | BF_PDF417, 1, license, config);
It's faster than your own multithreading solution :
Thread id: 20308. Type: PDF417
Thread id: 20308. Type: QR_CODE
Thread id: 20308. Type: DATAMATRIX
Thread id: 20308. Type: CODE_39
Thread id: 20308. Total barcode(s) found: 4. Time cost: 250 ms
The reason is that all of Dynamsoft Barcode decoding API Both are implemented in threads . therefore , You don't need to create threads to optimize decoding performance .
How does the number of threads affect Dynamsoft Barcode SDK performance ?
You may have noticed , There is one named maxAlgorithmThreadCount Parameters of . We can improve by increasing the number of threads SDK Performance ?
I did a simple test based on the hardware thread :
const auto processor_count = std::thread::hardware_concurrency();
int minimum_count = 1, minimum_timecost = 0;
for (int i = 0; i < processor_count; i++)
{
printf("Thread count: %d. ", i + 1);
int timecost = barcode_decoding(buffer, size, formats, i, license, config);
if (i == 0)
{
minimum_count = 1;
if (timecost > 0)
{
minimum_timecost = timecost;
}
}
else {
if (timecost < minimum_timecost)
{
minimum_count = i + 1;
minimum_timecost = timecost;
}
}
}
printf("Multi-thread best performance: thread_count = %d, timecost = %d \n\n", minimum_count, minimum_timecost);
Every time I run the app , We'll get different results . By using my test images , There is no significant difference in performance :
Thread count: 1. Thread id: 26376. Total barcode(s) found: 13. Time cost: 141 ms
Thread count: 2. Thread id: 26376. Total barcode(s) found: 13. Time cost: 141 ms
Thread count: 3. Thread id: 26376. Total barcode(s) found: 13. Time cost: 125 ms
Thread count: 4. Thread id: 26376. Total barcode(s) found: 13. Time cost: 140 ms
Thread count: 5. Thread id: 26376. Total barcode(s) found: 13. Time cost: 157 ms
Thread count: 6. Thread id: 26376. Total barcode(s) found: 13. Time cost: 203 ms
Thread count: 7. Thread id: 26376. Total barcode(s) found: 13. Time cost: 156 ms
Thread count: 8. Thread id: 26376. Total barcode(s) found: 13. Time cost: 140 ms
Multi-thread best performance: thread_count = 3, timecost = 125
obviously , A test image doesn't make any sense . Ideally , You should use image datasets to measure performance . therefore , If you are interested , Do it now .
This article is reprinted from 【 Huidu technology 】. Any reprint is welcome , But be sure to indicate the source 、 Do not modify the original link , Respect for the work of others
版权声明
本文为[roffey]所创,转载请带上原文链接,感谢
边栏推荐
- 如何使用甘特图图层和筛选器
- Erd-online free online database modeling tool
- How to make characters move
- 1万辆!理想汽车召回全部缺陷车:已发生事故97起,亏损将扩大
- win7 APPCRASH(解决方法)(转)
- The first choice for lightweight GPU applications is the NVIDIA vgpu instance launched by Jingdong Zhilian cloud
- Nodejs中使用jsonwebtoken(JWT)生成token的场景使用
- [elastic search engine]
- The essence of transaction and the principle of deadlock
- Epu360: all the H5 templates you want are here, e-book, big turntable, red envelope rain, questionnaire survey
猜你喜欢
Utility class functions (continuous update)
The use of Xunwei imx6 development board device tree kernel menuconfig
2020-08-29: process thread differences, in addition to the inclusion relationship, the underlying details?
What are the highlights of Huawei mate 40 series with HMS?
Git remote library rollback specified version
August 24, 2020: what are small documents? What's wrong with a lot of small files? How to solve many small files? (big data)
To solve the problem that the data interface is not updated after WPF binding set
Countdown | 2020 PostgreSQL Asia Conference - agenda arrangement of Chinese sub Forum
Big data processing black Technology: revealing the parallel computing technology of Pb level data warehouse gaussdb (DWS)
A good thing for working people -- to temper the will of iron and steel requires such an efficient computer
随机推荐
迅为-iMX6ULL开发板上配置AP热点
Stickinengine architecture 11 message queue
MRAM高速缓存的组成
Experiment one
New features of vue3
小程序商城系统插件代码该如何写?怎么用代码检查添加插件是否成功?
非易失性MRAM存储器应用于各级高速缓存
Detect certificate expiration script
Stm32f030c6t6 compatible to replace mm32spin05pf
Big data processing black Technology: revealing the parallel computing technology of Pb level data warehouse gaussdb (DWS)
Git remote library rollback specified version
Cloudquery v1.2.0 release
Introduction to Huawei cloud micro certification examination
如何才能快速正确的部署甘特图
What the hell is fastthreadlocal? The existence of ThreadLocal!!
How to deploy Gantt chart quickly and correctly
ImageMagick - 添加水印
Web API interface design: swaggerui document / unified response format / unified exception handling / unified authority verification
2020年新规,微信封号怎么快速解除?
Application layer software development Godfather teaches you how to refactor, senior programmers must professional skills