如何使边缘更准确?

时间:2019-03-17 14:23:58

标签: c# emgucv image-recognition edge-detection

我制作了一个应用程序,用于使用C#+ EmguCV比较鞋子的脚印。这就是我已经拥有的:Photo1。但是有一个麻烦。我需要使边缘更加平滑和准确。我该怎么办?

output = (new Image<Gray, byte>(input)).ThresholdBinaryInv(new Gray(ThresholdSlider.Value), new Gray(255));
output = output.Canny(200, 200);
Input.Source = BitmapToImageSource(input);
Output.Source = BitmapToImageSource(output.Bitmap);

0 个答案:

没有答案