severin-lemaignan/gazr

webcam video is very slow

Closed this issue · 2 comments

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

To compile in release mode, you would typically compile project like that:

$ mkdir build
$ cd build
$ cmake -DCMAKE_BUILD_TYPE=Release ..
$ make

Thanks , it is solved now