关于17天的计算机视觉速成课程的学习(第一天)

Face detection with Opencv and deep learning

基于Opencv和深度学习的面部检测

今天也是头一次写文章,主要就是记录一下我的但是所有的困惑和不解,还有查阅了很多的文章解决了一些难题(自己不懂的),现在我也不太了解。
首先介绍一下我的源代码链接,(具体怎么来的我也忘了):https://www.pyimagesearch.com/2018/02/26/face-detection-with-opencv-and-deep-learning/
下载之后里面的文件(下图)
!关于17天的计算机视觉速成课程的学习(第一天)_第1张图片

2,说一下我所烦的错误吧:
(1),我用的是VS2019搭配Opencv4,打开程序进行调试,发现了一些错误:usage: detect_faces_video.py [-h] -p PROTOTXT -m MODEL [-c CONFIDENCE]
detect_faces_video.py: error: the following arguments are required: -p/–prototxt, -m/–model
然后发现我没有仔细的观看文章(也就是源代码链接里的介绍)
(2)发现不需要进行在软件中打开代码调试,直接打开控制端窗口,按照文章里的介绍进行输入就可以:
python detect_faces.py --image rooster.jpg --prototxt deploy.prototxt.txt --model res10_300x300_ssd_iter_140000.caffemodel
python detect_faces_video.py --prototxt deploy.prototxt.txt --model res10_300x300_ssd_iter_140000.caffemodel
分别在控制端窗口执行就可以。
(3)按照上面的步骤进行,发现还是出现错误:
python: can’t open file ‘detect_faces_video.py’: [Errno 2] No such file or directory
命令窗口出现你上面的报错,查了很多相关的问题,但是发现没有一个和我的问题一样,也没有明确的解决方法

之后在原基础上进行改动
python E:\deep-learning-face-detection\deep-learning-face-detection\detect_faces.py --image=E:\deep-learning-face-detection\deep-learning-face-detection\iron_chic.jpg --prototxt E:\deep-learning-face-detection\deep-learning-face-detection\deploy.prototxt.txt --model=E:\deep-learning-face-detection\deep-lear
ning-face-detection\res10_300x300_ssd_iter_140000.caffemodel

python E:\deep-learning-face-detection\deep-learning-face-detection\detect_faces_video.py --prototxt=E:\deep-learning-face-detection\deep-learning-face-detection\deploy.prototxt.txt --model=E:\deep-learning-face-detection\deep-learning-face-detection\res10_300x300_ssd_iter_140000.caffemodel
(你下载后)文件的路径

你可能感兴趣的:(opencv,python)