我正在尝试加载lbpcascade_profileface.xml。
CascadeClassifier cad;
cad.load("C:/opencv/data/lbpcascades/lbpcascade_profileface.xml");
出现以下错误:
OpenCV Error: Parsing error (C:/opencv/data/lbpcascades/lbpcascade_profileface.x
ml(1): Comments are not allowed here) in unknown function, file ..\..\..\src\ope
ncv\modules\core\src\persistence.cpp, line 1818
怎么办?
答案 0 :(得分:5)
好的找到了解决方案。我不得不删除xml文件顶部的注释。现在它有效。但不知道为什么他们添加了无法解析的评论。
答案 1 :(得分:4)
我遇到了同样的问题,似乎评论错了。如果您想保留评论,只需将此行移到评论上方:
<?xml version="1.0"?>