9

现在可以使用 ios 5 进行人脸检测,我只是想知道是否也可以检测眨眼?我阅读了框架,但我只是获得了获得眼睛位置的方法。另外,我听说过用于 iphone 的 OpenCV 框架,它具有人脸检测功能。我会通过 OpenCV 框架完成闪烁的工作吗?

任何人都可以帮我解决一些关于 openCV 或面部/眨眼检测的问题吗?我只需要在 iphone/ipad 上进行眨眼检测。

欢迎任何建议/回复...谢谢。

已编辑:由于 iOS 5 处于 NDA 之下,请建议我是否可以通过 OpenCV 框架进行这种检测?

4

3 回答 3

4

现在在 iOS 7 中,CoreImage 支持眨眼。以下是 beta 2 的 API 差异:

这是 iOS 7 Beta 2 中的 API 差异:

核心图像

CIDetector.h

添加 CIDetectorEyeBlink

添加 CIDetectorSmile

于 2013-06-25T05:12:46.267 回答
2

You can detect the eyes with openCV.

Take a look here

http://opencv-code.com/OpenCV_Eye_Detection

From that, you can adapt your algorithm to track changes in the eye area, and find a way to formulate the blink of the eye based on these changes.

于 2011-08-22T22:37:15.527 回答
1

嘿,在 iOS 5 中有一个名为 CIDetector 的类。在那里,您不仅可以检测面部,还可以检测其特征,如左眼、嘴巴等。有关更多详细信息,请查看开发人员文档。

于 2011-10-24T06:26:56.030 回答