We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
老师您好,在尝试进行人脸识别实验时,我遇到了自己下载的图片格式不为 RGB 或 8-bit 图片报的错,我认为或许有必要在教程中对这种情况进行指引。
报错:
root@5457395ddf65:~/openface# python /root/openface/step-1_find-faces.py /home/rikkaw/training-images/chenglong/0 Traceback (most recent call last): File "/root/openface/step-1_find-faces.py", line 18, in <module> detected_faces = face_detector(image, 1) RuntimeError: Unsupported image type, must be 8bit gray or RGB image.
(其中 /home/rikkaw/ 是我自己的用户家目录地址)
/home/rikkaw/
对应的文档:
MachineLearningClass/README.md
Lines 954 to 974 in b4d9fe4
我的解决方法是使用 ImageMagick 工具进行格式转换,以修复该问题。
安装:
sudo apt-get install imagemagick
使用:
convert input.jpg -colorspace sRGB -type truecolor result.jpg
其中 input.jpg 和 result.jpg 是需要自己填写的路径。
input.jpg
result.jpg
希望您能考虑我的改进建议,谢谢!(由我编写这一小段并提交 Pull Request 也可以)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
老师您好,在尝试进行人脸识别实验时,我遇到了自己下载的图片格式不为 RGB 或 8-bit 图片报的错,我认为或许有必要在教程中对这种情况进行指引。
报错:
(其中
/home/rikkaw/
是我自己的用户家目录地址)对应的文档:
MachineLearningClass/README.md
Lines 954 to 974 in b4d9fe4
我的解决方法是使用 ImageMagick 工具进行格式转换,以修复该问题。
安装:
使用:
其中
input.jpg
和result.jpg
是需要自己填写的路径。希望您能考虑我的改进建议,谢谢!(由我编写这一小段并提交 Pull Request 也可以)
The text was updated successfully, but these errors were encountered: