且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

简单的BLOB检测算法

更新时间:2023-02-26 16:33:31

听起来像您承担了一个超出您能力的项目.我在有关图像处理的系列中(这里是Code Project)写了一些有关边缘检测的文章.他们可能会有所帮助.

使用C#和GDI +的傻瓜图像处理第3部分-边缘检测过滤器 [ ^ ]

Sounds like you took on a project that was beyond your means. I wrote some articles on edge detection in my series on image processing, here on Code Project. They may help.

Image Processing for Dummies with C# and GDI+ Part 3 - Edge Detection Filters[^]


首先要看的是AForge.NET,请参阅:

http://en.wikipedia.org/wiki/AForge.NET [ http ://www.aforgenet.com/ [ ^ ].

特别是,请参阅以下文章: http://www.aforgenet.com/articles/shape_checker/ [ ^ ].

另请参阅AForge.NET作者,CodeProject成员Andrew Kirillov的文章: http://www.codeproject.com/Members /Andrew-Kirillov [ ^ ].另一个要查看的CodeProject成员是Chesnokov Yuriy, http://www.codeproject.com/Members/Chesnokov-Yuriy [ ^ ].

(可选)查看以下库:

OpenCV, http://en.wikipedia.org/wiki/OpenCV [ http://opencv.willowgarage.com/wiki/ [ ^ ] ,

VXL, http://en.wikipedia.org/wiki/VXL [ http://vxl .sourceforge.net/ [ ^ ].

—SA
First to look at is AForge.NET, please see:

http://en.wikipedia.org/wiki/AForge.NET[^], http://www.aforgenet.com/[^].

In particular, please see this article: http://www.aforgenet.com/articles/shape_checker/[^].

See also the articles by the author of AForge.NET, CodeProject member Andrew Kirillov: http://www.codeproject.com/Members/Andrew-Kirillov[^]. Another CodeProject member to look at is Chesnokov Yuriy, http://www.codeproject.com/Members/Chesnokov-Yuriy[^].

Optionally, look at the following libraries:

OpenCV, http://en.wikipedia.org/wiki/OpenCV[^], http://opencv.willowgarage.com/wiki/[^],

VXL, http://en.wikipedia.org/wiki/VXL[^], http://vxl.sourceforge.net/[^].

—SA