我正在开发一个openCV应用程序。通过一些代码,我能够检测到正面。我想检测并保持用户微笑的次数。我的想法是在检测到面部后,我在它周围画了一个矩形,然后我会称之为微笑检测。到目前为止,我的结果不那么成功了。我发布了我的面部检测代码,任何人都可以给我任何指针如何从面部检测中的for循环开始。谢谢你。
public Mat detect(Mat inputframe) {
Mat mRgba = new Mat();
Mat mGrey = new Mat();
MatOfRect faces = new MatOfRect();
inputframe.copyTo(mRgba);
inputframe.copyTo(mGrey);
Imgproc.cvtColor(mRgba, mGrey, Imgproc.COLOR_BGR2GRAY);
Imgproc.equalizeHist(mGrey, mGrey);
face_cascade.detectMultiScale(mGrey, faces);
System.out.println(String.format("Detected %s face",
faces.toArray().length));
MatOfRect smileDetections = new MatOfRect();
face_cascade1.detectMultiScale(mGrey,smileDetections);
System.out.println(String.format("Detected %s smiles",smileDetections.toArray().length));
for (Rect rect : faces.toArray()) {
Point center = new Point(rect.x + rect.width * 0.5, rect.y
+ rect.height * 0.5);
Core.ellipse(mRgba, center, new Size(rect.width * 0.5,
rect.height * 0.5), 0, 0, 360, new Scalar(255, 0, 255), 4,
8, 0);
}
return mRgba;
}
}
答案 0 :(得分:2)