我正在尝试在Xamarin上开发移动应用程序。首先,我正在为Android设备做这件事。我希望Oncamera功能能够自动检测轮廓并测量对象的大小。作为主要步骤,我试图实时检测轮廓。阅读很多表格和许多文件,但没有任何帮助我
public Mat OnCameraFrame(CameraBridgeViewBase.ICvCameraViewFrame inputFrame)
{
Mat input = inputFrame.Rgba();
List<MatOfPoint> contours = new ArrayList<MatOfPoint>();
Mat gray = new Mat();
//Mat hierarchy = new Mat();
Imgproc.CvtColor(p0: input, p1: gray, p2: Imgproc.ColorRgb2gray);
Mat blur = new Mat();
Imgproc.GaussianBlur(gray, blur, new Size(7, 7), -2);
Mat thresh = new Mat();
Imgproc.Threshold(blur, thresh, 127, 250, Imgproc.ThreshBinary);
Mat edged = new Mat();
Imgproc.Canny(thresh, thresh, 25, 50);
Imgproc.Dilate(thresh, thresh, new Mat(), new Point(-1, 1), 1);
Mat hierarchy = thresh.Clone();
Imgproc.FindContours(hierarchy, contours, new Mat(),
Imgproc.RetrExternal, Imgproc.ChainApproxNone);
Java.Lang.JavaSystem.Out.Println("contours" + contours);
if (contours != null)
{
Java.Lang.JavaSystem.Out.Println("found contours");
for (int i = 0; i < contours.Count(); i++)
{
Imgproc.DrawContours(input, contours, i, new Scalar(255, 0, 0), -1);
}
}
else
{
Java.Lang.JavaSystem.Out.Println("no contours");
}
return input;
我在代码中使用了上面的逻辑。但我在应用程序中的输出显示正常图像,没有任何轮廓绘制。如果我返回“thresh”,那么canny边缘检测就完美了。但Drawcontours没有出现任何东西。 我使用了Contours.count(),因为我的Xamarin ide为contours.Size();
显示错误答案 0 :(得分:0)
我有类似的问题。 就我而言,我已经替换了
List<MatOfPoint> contours = new ArrayList<MatOfPoint>();
使用
IList<MatOfPoint> contours = new JavaList<MatOfPoint>();