webcam video is very slow
Closed this issue · 2 comments
sarmadm commented
I have compiled both dlib and gazr in release mode :
mkdir build
cd build
cmake ..
cmake --build . --config Release
but when I run
./gazr_show_head_pose --model ../share/shape_predictor_68_face_landmarks.dat
the video from webcam is very slow
severin-lemaignan commented
To compile in release mode, you would typically compile project like that:
$ mkdir build
$ cd build
$ cmake -DCMAKE_BUILD_TYPE=Release ..
$ make
sarmadm commented
Thanks , it is solved now