在融合 OpenCV3 的 netbeans 中使用 Imgproc.rectangle 进行人脸检测时出错?

Getting Error while using Imgproc.rectangle in netbeans fusing OpenCV3 for face detection?

关于使用以下代码:-

Imgproc.rectangle(frame, new Point(rect.x, rect.y), new Point(rect.x + rect.width, rect.y + rect.height),new Scalar(0, 255, 0));

在 netbeans 8 中使用 OpenCV 3 进行人脸检测我在 Mat 框架中绘制矩形时遇到问题。

Netbeans 说:-

incompatible type:cannot convert java.awt.point to org.opencv.core.point

我的项目需要帮助,有人可以解决吗......???

在文件顶部附近,更改:

import java.awt.Point;

import org.opencv.core.Point;

如果您使用“修复导入”功能,请务必仔细检查对话框并select导入在多个包中找到的class正确的包。