我正在使用使用霍夫变换的应用程序,并且我想减少具有相似参数的多行,但是我不知道在哪里可以从霍夫累加器找到rho和theta。
这是我对Hough的实现
LineSegment2D[] lines = CvInvoke.HoughLinesP(cannyEdges, 1, Math.PI / 180.0, 12, 1, 7);
foreach (LineSegment2D line in lines)
image_PB2.Draw(line, new Bgr(Color.Green), 1);
pictureBox2.Image = image_PB2.Bitmap;