Opencv 2.2 人脸检测最大尺寸
在 opencv 2.2 中,cvHaarDetectObjects 函数提供了最大面部尺寸选项。问题是它似乎不起作用。我希望有人可以尝试一下,并让我知道我是否做错了什么。我设置了 cvSize(30,30) 的最小面部尺寸检测和 cvSize(40,40) 的最大面部尺寸检测,但是即使我占据全屏(例如 300x300 像素),它仍然会检测我的面部。
In opencv 2.2 the cvHaarDetectObjects function offers a max face size option. The problem is it doesn't seem to work. I am hoping somone can try it out, and let me know if I am just doing soemthing wrong or not. I am putting in a min face size detection of cvSize(30,30) and a max face size of cvSize(40,40), however it will still detect my face even if I take up the fullscreen, at say 300x300 pixels.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实证明这个功能不起作用,opencv的源代码中有一个小bug。
It turns out this feature does not work, there is a small bug in opencv's source code.