Skip to content

Installation from sources Linux

RomanN91 edited this page May 12, 2019 · 5 revisions
  • Install building dependencies
sudo apt-get update
sudo apt-get install g++ cmake git python3-pip
  • Install app dependencies
sudo pip3 install torchvision torch numba filterpy opencv-python
sudo apt-get install libboost-all-dev libopencv-dev qt5-default
  • Build app
git clone https://github.com/stasysp/markup_tool
cd markup_tool
mkdir build
cd build
cmake ..
make
  • Download weights
wget https://pjreddie.com/media/files/yolov3.weights -O data/models/yolo3/yolov3.weights
  • From ../build/ run app
./markup_tool

Install from Sources

Clone this wiki locally