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
I would like to share how I get it to work on my system in case it's useful for someone else because I have some issues with boost.
I follow the instructions on the wiki with some little changes, mainly I downloaded boost 1.64 manually and change a couple of lines in CMakeCache.txt because i get this error:
make[2]: *** No rule to make target `/usr/local/lib/libboost_filesystem-mt.dylib', needed by `bin/FaceLandmarkImg'. Stop.
make[1]: *** [exe/FaceLandmarkImg/CMakeFiles/FaceLandmarkImg.dir/all] Error 2
make: *** [all] Error 2
//Boost system library (debug)
Boost_SYSTEM_LIBRARY_DEBUG:FILEPATH=/usr/local/lib/libboost_system.dylib
//Boost system library (release)
Boost_SYSTEM_LIBRARY_RELEASE:FILEPATH=/usr/local/lib/libboost_system.dylib
Well noted that this also need to be amended. Took me a while to spot this.
Hi!
I would like to share how I get it to work on my system in case it's useful for someone else because I have some issues with boost.
I follow the instructions on the wiki with some little changes, mainly I downloaded boost 1.64 manually and change a couple of lines in CMakeCache.txt because i get this error:
TBB AND OPENCV3
DOWNLOAD AND INSTALL BOOST 1.64
OPENFACE
MODIFY file CMakeCache.txt
Replace this:
//Boost filesystem library (debug)
Boost_FILESYSTEM_LIBRARY_DEBUG:FILEPATH=/usr/local/lib/libboost_filesystem-mt.dylib
//Boost filesystem library (release)
Boost_FILESYSTEM_LIBRARY_RELEASE:FILEPATH=/usr/local/lib/libboost_filesystem-mt.dylib
With this:
//Boost filesystem library (debug)
Boost_FILESYSTEM_LIBRARY_DEBUG:FILEPATH=/usr/local/lib/libboost_filesystem.dylib
//Boost filesystem library (release)
Boost_FILESYSTEM_LIBRARY_RELEASE:FILEPATH=/usr/local/lib/libboost_filesystem.dylib
And finally:
Thanks for make this available to all!
Hugo
The text was updated successfully, but these errors were encountered: