给定坐标和颜色,如何以编程方式确定该颜色的连续区域?
我正在使用 Ruby 和 RMagick 来处理图像,但问题与语言无关...
我基本上正在处理表格数据的图像,并认为确定单元格的最简单方法之一是检测连续的白色区域(或任何背景颜色),然后获取内容的边界框。
但是,确定任意给定点的连续颜色区域的最有效方法是什么?
I'm using Ruby and RMagick to process an image, but the question is language agnostic...
I'm basically processing an image of tabular data and figured one of the easiest ways to determine a cell is to detect a contiguous area of white (or whatever the background color is) and then get the bounding box of the content.
But what's the most efficient way of determining a contiguous area of a color at any given spot?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我假设你的意思是洪水填充:
http://en.wikipedia.org/wiki/Flood_fill< /a>
http://rosettacode.org/wiki/Bitmap/Flood_fill#Ruby
Well, I'll assume you meant flood fill:
http://en.wikipedia.org/wiki/Flood_fill
http://rosettacode.org/wiki/Bitmap/Flood_fill#Ruby