赞
踩
安装:网上有些好人给出了方法(自己是CUDA Version 10.0.166),参考的简洁链接:
https://blog.csdn.net/weixin_43640369/article/details/87341875
https://blog.csdn.net/u011961856/article/details/86070532
https://www.cnblogs.com/supersayajin/p/8489435.html
dlib 带GPU安装:
git clone https://github.com/davisking/dlib.git
cd dlib
mkdir build
cd build
cmake … -DDLIB_USE_CUDA=1 -DUSE_AVX_INSTRUCTIONS=1
cmake --build .
cd …
python3 setup.py install(自己开发板jetson tx2,系统ubuntu18.0.4,用不了–yes)
#python3.6 setup.py install --yes USE_AVX_INSTRUCTIONS --yes DLIB_USE_CUDA
进入python3 环境,dlib.DLIB_USE_CUDA应该是true的,dlib.USE_(table补全,也可以查看下).tx2,自己是网上找的查看GPU使用情况:
git clone https://github.com/jetsonhacks/gpuGraphTX.git
cd gpuGraphTX
./gpuGraphTX.py
大致用的还行
因为开发板上跑的比pc上还慢,所以就尝试了半天、卸载、重装(先前不小心只装了cpu的)、加速:
参考的一些接口,和转换:
detector = dlib.get_frontal_face_detector()
dlib.shape_predictor(‘shape_predictor_68_face_landmarks.dat’)
detector_cnn = dlib.cnn_face_detection_model_v1(‘mmod_human_face_detector.dat’)
dlib.rectangle(d.rect.left(),d.rect.top(),d.rect.right(),d.rect.bottom())(detector_cnn 检测的转dlib.rectangle给dlib.shape_predictor用)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。