You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey Tristan, great eye tracking system first of all. 😄
Just a heads up, your current implementation as it is in the repository won't run due to the path given to the haarcascade_frontalface_alt.xml file in main.cpp. Since eyeLike's post-build executable location is under build/bin/, the double ellipse count should be two, not three, eg:
Yah that's probably reasonable. The path is correct for the way I build eyeLike with XCode, which puts the binary under build/bin/Debug/, but that's not what happens with command line CMake.
It being a command line parameter that defaults to two levels up seems like a better option indeed.
Hey Tristan, great eye tracking system first of all. 😄
Just a heads up, your current implementation as it is in the repository won't run due to the path given to the haarcascade_frontalface_alt.xml file in main.cpp. Since eyeLike's post-build executable location is under
build/bin/
, the double ellipse count should be two, not three, eg:cv::String face_cascade_name = "../../res/haarcascade_frontalface_alt.xml";
I might suggest turning the path of said xml file into an argument, so the user can specify where the xml file is without needing to recompile.
The text was updated successfully, but these errors were encountered: