使用python库在图像中填充穿孔形状?

时间:2018-06-16 17:05:34

标签: python opencv image-processing imagemagick pillow

我有BW图像"穿孔"。穿孔水平可以不同

enter image description here enter image description here enter image description here enter image description here

有没有"标准"如何用黑色完全填充形状以使它们更相似?

Pillow& opencv首选,但imagemagick也可以。

1 个答案:

答案 0 :(得分:4)

您可以使用image morphology(i.e: closing)来实现此目标。

 class A {
   int col;
   int row;

   A.fromMap(Map<dynamic, dynamic> data)
       : col = data['col'],
         row = data['row'];
 }

 class B {
   A aObj;
   int objType;
   int count;

   B.fromMap(Map<dynamic, dynamic> data)
       : objType = data['objType'],
         count = data['count'],
         aObj = A.fromMap(data['A']);
 }

1 2

3 4