我有一个图像 image.png,我想找到所有裁剪的像素。这是我到目前为止所拥有的:
for i in range(1,width):
for j in range(1, height):
r,g,b = image.getpixel((i,j))
If( ): # I don't know what should be the condition here
# do something else
我使用 Python、Tkinter、Pil。
谢谢