我的图片颜色很少。 (最多5种颜色,并且都非常不同。)
在颜色之间的区域的边界处,在这些颜色之间存在(通常是单像素宽)混合线。我该如何删除?
无论如何,我之后使用它们作为一个numpy数组进行操作,所以如果这可以通过numpy数组来实现,那也是有用的。
例如,此图片:
这是从这个数组:
image = np.append(
np.append(np.ones((10, 10, 3)), np.ones((1, 10, 3)) / 5., axis=0),
np.zeros((10, 10, 3)), axis=0
)
# Or a 10 * 10 white (0, 0, 0) region with a 1 * 10 line of (0.2, 0.2, 0.2) pixels
# underneath and a 10 * 10 black (1, 1, 1) region underneath that.
# Expected result:
expected = np.append(np.ones((10, 10, 3)), np.zeros((11, 10, 3)), axis=0)
我想要一个将1 * 10灰色像素线转换为黑色的功能,因为它更接近黑色。