使用Imagemagick查找相似颜色区域
有没有什么方法可以使用ImageMagick(或者其他类似的工具,任何能用的都行!)来找出图片中相邻像素颜色相似的区域?
提前谢谢你!
1 个回答
1
Photoshop、Gimp 以及很多其他的图像处理软件都可以帮你完成这个任务。下面是一些用 Python 编写的代码,可以实现这个功能:
from PIL import Image, ImageDraw
def inImage(im, px):
x,y = px
return x < im.size[0] and y < im.size[1] and x > 0 and y > 0
def meetsThreshold(im, px, st, threshold):
color = im.getpixel(px)
similar = im.getpixel(st)
for cPortion, sPortion in zip(color,similar):
if abs(cPortion - sPortion) > threshold:
return False
return True
def floodFill(im, fillaroundme, fillWith, meetsThresholdFunction):
imflooded = im.copy()
imflooded.putpixel(fillaroundme, fillwith)
processed = []
toProcess = [fillaroundme]
while len(toProcess) > 0:
edge = toProcess.pop()
processed.append(edge)
x, y = edge
for checkMe in ((x+1, y), (x-1, y), (x, y+1), (x, y-1)):
if inImage(im, checkMe) and meetsThresholdFunction(im, edge, checkMe):
imflooded.putpixel(checkMe, fillWith)
if checkMe not in toProcess and checkMe not in processed:
toProcess.append(checkMe)
processed.append(edge)
return imflooded
im = Image.open(r"tardis.jpg")
filled = floodFill(im, (120, 220), (255, 0, 0), lambda im, px, st: meetsThreshold(im, px, st, 10))
filled.show()
我从 这里 下载了 tardis.jpg 这张图片。