2D 位图邻居分组
假设我有一个 1 位像素的 2D 数组,例如图像位图。我想找到 2x2 或更大的组/簇。这些组可以采用任何大于该值的自由形状。
有什么推荐的算法吗?对于组边界,我考虑的是“行进方块”,但是计算每个组的面积怎么样?
Let's say I have a 2D array of 1bit pixels, for example an image bitmap. I would like to find groups/clusters of 2x2 or larger. The groups can take any free form shape larger than that.
Any recommended algorithms for this? For the group boundaries I thinking about 'marching squares' but how about counting the area of each group?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是:使用简单的逻辑找到 4 个设置位的“种子”,然后使用 flood-fill发现整个区域并计算其
体积面积。Yes: use simple logic to find a "seed" of 4 set bits, then use flood-fill to discover the whole region and calculate its
volumearea.