HsiehYiChia / BarcodeScanner

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BarcodeScanner

How to build?

Windows

  1. Install opencv, put opencv/ to C:\
  2. add C:\opencv\build\x64\vc14\bin to System Variable Path
  3. Use cmake to create Visual Studio Project
cd BarcodeScanner
mkdir build
cd build
cmake -G "Visual Studio 15 2017 Win64" -DCMAKE_BUILD_TYPE=Release ..
  1. Compile via scene_text_recognition.sln, you will find executable in build/Release/

Linux

  1. Install opencv, refer to OpenCV Installation in Linux
  2. Use cmake to create Makefile, and make
cd BarcodeScanner
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make

About

License:MIT License


Languages

Language:C++ 91.8%Language:CMake 8.2%