我目前正在使用Aforge的SusanCornersDetector类检测image的角落。通过配对我从SusanCornersDetector获得的角落,我想得到的是图像边缘的集合。
像:
SusanCornersDetector scd = new SusanCornersDetector();
Bitmap image = pictureBoxA.Image;
List<IntPoint> corners = scd.ProcessImage(image)
List<IntPoint,Intpoint> edges = new List<IntPoint,Intpoint>();
/**
code goes here
**/
我搜索了其他边缘检测算法,但他们大多数人都在检测图像中的所有点。我只想要边缘的起点和终点
编辑:These是我将在项目中使用的示例图片