# mips64-barcode-qr-detection **Repository Path**: yushulx/mips64-barcode-qr-detection ## Basic Information - **Project Name**: mips64-barcode-qr-detection - **Description**: 使用Dynamsoft提供的MIPS64 C/C++ 一维码,二维码SDK,实现C++和Python的扫码应用。 - **Primary Language**: C++ - **License**: Not specified - **Default Branch**: main - **Homepage**: https://www.dynamsoft.com/barcode-reader/overview/ - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-07-14 - **Last Updated**: 2021-07-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 支持龙芯MIPS64的C++,Python一维码,二维码扫描实现 此仓库的C++,Python一维码,二维码识别示例代码可以在龙芯MIPS64的电脑上运行。 ## SDK下载 [MIPS64 C++ Barcode SDK](https://download.dynamsoft.com/dbr/DynamsoftBarcodeReader_Mips64el.zip) ## 运行方法 1. 在Dynamsoft网站上注册获取一个有效的[LICENSE序列号](https://www.dynamsoft.com/customer/license/trialLicense?product=dbr),并保存到`license.txt`文件中。 2. 运行程序. C++程序: ```bash cd cpp mkdir build cd build cmake .. cmake --build . ./BarcodeReaderDemo ../../license.txt ../../test.png ``` Python程序(需要先编译一个桥接的动态链接库): ```bash cd python/bridge mkdir build cd build cmake .. cmake --build . cd ../../ python3 app.py ../license.txt ```