扫描图像的自适应阈值处理
我想改进通过文档扫描获取的一些图像,是否有人有用于动态阈值处理的 VB 示例代码,以实现与页面底部显示的图像类似的结果;
I would like to improve a number of images accquired with document scanning, does anybody have any VB sample code for dynamic thresholding to achieve a result something similar to the images shown at the bottom of the page;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看大津的方法。它非常简单且易于实现——您应该能够立即将 Wikipedia 的伪代码转换为 VB。
Otsu 的方法将为您提供一个阈值(单个值)——然后您可以使用该阈值对图像进行二值化。阈值代码也很简单。
Have a look at Otsu's method. It's quite simple an easy to implement -- you should be able to transform Wikipedia's pseudo-code into VB in no time.
Otsu's method will give you a threshold (single value) -- you can then use that threshold to binarize the image. The thresholding code is also trivial.