I followed the following steps to install dlib on Linux server:
cd dlib
mkdir build
cd build
cmake ..
cmake --build . --config Release
make install
I got the following error:
detector = dlib.get_frontal_face_detector() AttributeError: module 'dlib' has no attribute 'get_frontal_face_detector'
Why am I getting this error?
Any help would be really appreciated.