gpt4 book ai didi

android - 眨眼检测 OpenCV Android

转载 作者:搜寻专家 更新时间:2023-11-01 09:03:52 25 4
gpt4 key购买 nike

我在 C++ 中找到了一些示例,说明如何使用 OpenCV 检测眨眼

不幸的是,很难找到适用于 Android 的相同内容。

我发现了这个:

case Sample2NativeCamera.VIEW_MODE_HOUGH_CIRCLES:
capture.retrieve(mRgba, Highgui.CV_CAP_ANDROID_COLOR_FRAME_RGBA);

Imgproc.cvtColor(mRgba, mGray, Imgproc.COLOR_RGBA2GRAY, 4);

// doing a gaussian blur prevents getting a lot of small false circles
Imgproc.GaussianBlur(mGray, mGray, new Size(5, 5), 2, 2);

// the lower this figure the more spurious circles you get
// 50 looks good in CANNY, but 100 is better when converting that into Hough circles
iCannyUpperThreshold = 100;
Imgproc.HoughCircles(mGray, mIntermediateMat, Imgproc.CV_HOUGH_GRADIENT, 2.0, mGray.rows() / 8,
iCannyUpperThreshold, iAccumulator, iMinRadius, iMaxRadius);

if (mIntermediateMat.cols() > 0)
for (int x = 0; x < Math.min(mIntermediateMat.cols(), 10); x++)
{
double vCircle[] = mIntermediateMat.get(0,x);

if (vCircle == null)
break;

pt = new Point(Math.round(vCircle[0]), Math.round(vCircle[1]));
radius = (int)Math.round(vCircle[2]);
// draw the found circle
Core.circle(mRgba, pt, radius, colorRed, iLineThickness);

// draw a cross on the centre of the circle
DrawCross (mRgba, pt);
}

if (bDisplayTitle)
ShowTitle ("Hough Circles", 1);

break;

但我不知道如何在我的 OpenCV 示例代码中使用它。我有所有 OpenCV 示例代码。我正在玩 OpenCV - 人脸检测。

我刚刚将级联从正面更改为眼睛。 所以,它起作用了……它可以检测到眼睛。

但是我需要检测的不仅仅是眼睛的位置。 我需要检测用户何时眨眼。我看到了上面的代码,但我不知道如何在我的 OpenCV 人脸检测代码中使用它,因为它使用级联来检测眼睛。上面的方法没有使用级联。那么,我该如何使用它呢?

关于如何使用 OpenCV 检查眨眼有什么想法吗?

我花了将近一个星期的时间在 Google 和此处寻找此信息,但我就是找不到适用于 Android 的信息。 =(

欢迎任何帮助!

最佳答案

如果你能检测到眼睛,那么你就可以寻找眼睛消失然后很快重新出现的情况。这看起来像眨眼。如果你能检测到嘴巴,那么你就可以确保它也留在大致相同的位置。

关于android - 眨眼检测 OpenCV Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13355033/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com