使用PIL查找图像中透明区域的位置

时间:2016-10-14 19:17:17

标签: python imagemagick python-imaging-library alpha pillow

我想用其他图像填充图像中的透明块。 例如: 在这张图片中,我们有4个透明块,需要填充。

需要找到块的位置并确定x,y,x2,y2坐标,以便我知道如何调整缩略图的大小。

Image with transparent

有人知道如何使用PIL或unix工具来做到这一点。 谢谢你的帮助

1 个答案:

答案 0 :(得分:3)

您可以在命令行中使用 ImageMagick ,或在Python,Perl,PHP或C / C ++中执行此操作。

首先,提取alpha通道:

convert input.png -alpha extract alpha.png

enter image description here

但是我要做形态学,我想要黑色的白色,所以反转它:

convert input.png -alpha extract -negate alpha.png

enter image description here

现在运行“连接组件”分析以查找白色斑点:

convert input.png -alpha extract -negate -threshold 50% \
    -define connected-components:verbose=true           \
    -define connected-components:area-threshold=100     \
    -connected-components 8 -auto-level null:

<强>输出

Objects (id: bounding-box centroid area mean-color):
  0: 600x376+0+0 249.7,205.3 129723 srgb(0,0,0)
  2: 203x186+70+20 170.8,112.6 27425 srgb(255,255,255)
  1: 218x105+337+13 445.5,65.0 22890 srgb(255,255,255)
  4: 218x105+337+251 445.5,303.0 22890 srgb(255,255,255)
  3: 218x104+337+132 445.5,183.5 22672 srgb(255,255,255)

他们就是。忽略第一行,因为它是黑色并且对应于整个图像。现在,查看第二行,您可以看到块在偏移+ 70 + 20处为203x186。质心也在那里。让我把那个blob装进红色:

convert input.png -stroke red -fill none -draw "rectangle 70,20 272,205" z.png

enter image description here