作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
相对于从opencv connectedComponentsWithStats
检索的源图像,迭代标签像素位置的最佳方法是什么?当前,我将标签放置在源图像大小的空白背景上,如下所示,并在源图像像素上进行迭代以查找标签的位置:
bg = np.uint8(np.zeros(labels.shape[:2]))
bg[np.where(labels == 1)] = 255
# Start pixel by pixel iteration on bg, but limited to their bounding box taken from stats
最佳答案
比我想象的要容易!您可以像这样简单地迭代标签像素。
y = np.where(labels == 1)[1]
x = np.where(labels == 1)[0]
关于python - 如何遍历每个连接的组件标签像素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58482035/
我是一名优秀的程序员,十分优秀!