赞
踩
# for GPU
pip3 install paddlepaddle-gpu
注:此处显示paddle安装成功但后续无法正常import
报错信息
#使用insightfacepaddle时出现Error
Can not import paddle core while this file exists: /data/User21100768/anaconda3/envs/face/lib/python3.7/site-packages/paddle/fluid/libpaddle.so
ImportError: libcudart.so.10.2: cannot open shared object file: No such file or directory
分析
由于libcudart.so是CUDA运行时库的一部分,故推测是Paddle版本与CUDA版本不匹配所导致的
查询服务器的CUDA版本:11.7
#命令行输入
nvidia-smi
https://www.paddlepaddle.org.cn/
pip3 install --upgrade -r requirements.txt -i https://mirror.baidu.com/pypi/simple
pip3 install --upgrade insightface-paddle
python3 setup.py bdist_wheel
pip3 install dist/*
可以通过以下命令获取参数信息
insightfacepaddle -h
构建索引
insightfacepaddle --build_index ./demo/friends/index.bin --img_dir ./demo/friends/gallery --label ./demo/friends/gallery/label.txt
预测
Image(s)
./output
下:insightfacepaddle --det --input ./demo/friends/query/friends1.jpg --output ./output
Video
insightfacepaddle --det --input ./demo/friends/query/friends.mp4 --output ./output
仅识别
Image(s)
使用下图(某张图片)进行测试
预测命令如下:
insightfacepaddle --rec --index ./demo/friends/index.bin --input ./demo/friends/query/Rachel.png
检测结果输出在终端中:
INFO:root:File: Rachel.png, predict label(s): ['Rachel']
检测+识别系统串联
Image(s)
预测命令如下,检测结果图位于路径 ./output
下
insightfacepaddle --det --rec --index ./demo/friends/index.bin --input ./demo/friends/query/friends2.jpg --output ./output
Video
insightfacepaddle --det --rec --index ./demo/friends/index.bin --input ./demo/friends/query/friends.mp4 --output ./output
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。