我开始学习一些对象识别,我对openCV
感兴趣。首先,我尝试了可以识别您脸部的教程。我安装了numPy和openCV
。当我尝试运行下面的程序时,我收到了这个错误:
文件"我的程序路径\ camera.py",第4行,in face_cascade = cv2.CascadeClassifier(' haarcascade_frontalface_default.xml') cv2.error: d:\构建\的OpenCV \的OpenCV-3.1.0 \模块\芯\ SRC \ persistence.cpp:2220: 错误:( - 212)haarcascade_frontalface_default.xml(1):有效的XML应该 从''开始在函数icvXMLParse
中
我试图在任何地方找到这个问题的答案,但我失败了。我发现很多其他人都有这个问题,但解决方案并没有奏效。我尝试重新安装python,安装另一个openCV
等。
我的代码在这里:
import numpy as np
import cv2
face_cascade = cv2.CascadeClassifier('haarcascade_frontalface_default.xml')
eye_cascade = cv2.CascadeClassifier('haarcascade_eye.xml')
cap = cv2.VideoCapture(0)
while 1:
ret, img = cap.read()
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
faces = face_cascade.detectMultiScale(gray, 1.3, 5)
for (x,y,w,h) in faces:
cv2.rectangle(img,(x,y),(x+w,y+h),(255,0,0),2)
roi_gray = gray[y:y+h, x:x+w]
roi_color = img[y:y+h, x:x+w]
eyes = eye_cascade.detectMultiScale(roi_gray)
for (ex,ey,ew,eh) in eyes:
cv2.rectangle(roi_color,(ex,ey),(ex+ew,ey+eh),(0,255,0),2)
cv2.imshow('img',img)
k = cv2.waitKey(30) & 0xff
if k == 27:
break
cap.release()
cv2.destroyAllWindows()
我将不胜感激任何帮助。
P.S。:我的xml
程序以<?xml...?>
答案 0 :(得分:0)
我刚试了一下,但我没有收到错误。如果我故意搞砸了一个或两个文件,我得到了这个错误,而不是那些直接来自github项目的文件。这些是我的每个文件的前十行:
$ head haarcascade_*.xml
==> haarcascade_eye.xml <==
<?xml version="1.0"?>
<!--
Stump-based 20x20 frontal eye detector.
Created by Shameem Hameed (http://umich.edu/~shameem)
////////////////////////////////////////////////////////////////////////////////////////
IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
By downloading, copying, installing or using the software you agree to this license.
==> haarcascade_frontalface_default.xml <==
<?xml version="1.0"?>
<!--
Stump-based 24x24 discrete(?) adaboost frontal face detector.
Created by Rainer Lienhart.
////////////////////////////////////////////////////////////////////////////////////////
IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
By downloading, copying, installing or using the software you agree to this license.
head haarcascade_*.xml
为您输出了什么?如果你看起来和我一样,是否有可能有一些奇怪的控制字符或某些东西进入你的文件?尝试head haarcascade_frontalface_default.xml | hexdump -C
查看文件开头的确切字节。对我来说,它输出:
00000000 3c 3f 78 6d 6c 20 76 65 72 73 69 6f 6e 3d 22 31 |<?xml version="1|
00000010 2e 30 22 3f 3e 0a 3c 21 2d 2d 0a 20 20 20 20 53 |.0"?>.<!--. S|
00000020 74 75 6d 70 2d 62 61 73 65 64 20 32 34 78 32 34 |tump-based 24x24|
00000030 20 64 69 73 63 72 65 74 65 28 3f 29 20 61 64 61 | discrete(?) ada|
00000040 62 6f 6f 73 74 20 66 72 6f 6e 74 61 6c 20 66 61 |boost frontal fa|
00000050 63 65 20 64 65 74 65 63 74 6f 72 2e 0a 20 20 20 |ce detector.. |
00000060 20 43 72 65 61 74 65 64 20 62 79 20 52 61 69 6e | Created by Rain|
00000070 65 72 20 4c 69 65 6e 68 61 72 74 2e 0a 0a 2f 2f |er Lienhart...//|
00000080 2f 2f 2f 2f 2f 2f 2f 2f 2f 2f 2f 2f 2f 2f 2f 2f |////////////////|
*
000000d0 2f 2f 2f 2f 2f 2f 0a 0a 20 20 49 4d 50 4f 52 54 |//////.. IMPORT|
000000e0 41 4e 54 3a 20 52 45 41 44 20 42 45 46 4f 52 45 |ANT: READ BEFORE|
000000f0 20 44 4f 57 4e 4c 4f 41 44 49 4e 47 2c 20 43 4f | DOWNLOADING, CO|
00000100 50 59 49 4e 47 2c 20 49 4e 53 54 41 4c 4c 49 4e |PYING, INSTALLIN|
00000110 47 20 4f 52 20 55 53 49 4e 47 2e 0a 0a 20 20 42 |G OR USING... B|
00000120 79 20 64 6f 77 6e 6c 6f 61 64 69 6e 67 2c 20 63 |y downloading, c|
00000130 6f 70 79 69 6e 67 2c 20 69 6e 73 74 61 6c 6c 69 |opying, installi|
00000140 6e 67 20 6f 72 20 75 73 69 6e 67 20 74 68 65 20 |ng or using the |
00000150 73 6f 66 74 77 61 72 65 20 79 6f 75 20 61 67 72 |software you agr|
00000160 65 65 20 74 6f 20 74 68 69 73 20 6c 69 63 65 6e |ee to this licen|
00000170 73 65 2e 0a |se..|
00000174
答案 1 :(得分:0)
重新下载xml文件解决了问题。很简单,但我需要很长时间才能计算出来。