0
我已經與如何從emgu CV圈使橡膠板模型的一個問題,這是我的代碼在c#
:執行Dougman't方法(橡膠板型號)
// looking for iris
CircleF[] circles = cannyEdges.HoughCircles(
cannyThreshold,
circleAccumulatorThreshold,
3.6, //Resolution of the accumulator used to detect centers of the circles
cannyEdges.Height/2, //min distance
2, //min radius
0 //max radius
)[0]; //Get the circles from the first channel
var img = myImage.Clone();
var img2 = myImage.Clone();
foreach (CircleF circle in circles)
img.Draw(circle, new Bgr(Color.Brown), 10);
pictureBox3.SizeMode = PictureBoxSizeMode.StretchImage;
pictureBox3.Image = img.ToBitmap();
堆棧溢出不是一個來調試你的代碼的地方。如果你有一個特定的問題,並提出這個問題,你更有可能得到幫助。 – jmarkmurphy 2015-04-04 15:09:50
好吧,對不起,我只是一個新手。我認爲堆棧溢出是一個論壇,我可以解決我的問題。非常感謝 – 2015-04-08 11:44:57
好的,具體是什麼你的問題?這是什麼,你認爲是不正確的?你想要發生什麼? – jmarkmurphy 2015-04-08 12:53:09