https://github.com/dkurt/qrcode
ISI-2018 practice
https://github.com/dkurt/qrcode
Last synced: 9 months ago
JSON representation
ISI-2018 practice
- Host: GitHub
- URL: https://github.com/dkurt/qrcode
- Owner: dkurt
- Created: 2018-07-23T20:39:45.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-16T12:19:27.000Z (almost 8 years ago)
- Last Synced: 2025-04-04T19:03:13.833Z (about 1 year ago)
- Language: C++
- Size: 368 KB
- Stars: 5
- Watchers: 1
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## QR codes detector
This project is a part of practice course at Intel's Summer Internship program 2018
### Getting started
* Clone this repository to your computer
```
git clone https://github.com/dkurt/qrcode.git
cd qrcode
```
* Initialize submodules (useful 3rdparty libraries from different repositories)
```
git submodule init
git submodule update
```
* Build a project (make sure if `cmake` installed)
```
mkdir build && cd build
```
* Linux
```
cmake -DCMAKE_BUILD_TYPE=Release .. && make -j4
```
* Microsoft Windows
```
"C:\Program Files\CMake\bin\cmake.exe" -DCMAKE_BUILD_TYPE=Release -G "Visual Studio 14 Win64" ..
"C:\Program Files\CMake\bin\cmake.exe" --build . --config Release
```