所以我开始在linux中使用python进行图像处理。所以我运行代码
from PIL import Image
from pylab import *
im = array(Image.open('sample.jpg').convert('L'))
im2 = 255 - im
imshow(im)
figure()
imshow(im2)
figure()
im3 = (100.0/255)*im + 100
imshow(im3)
figure()
im4 = 255.0 * (im/255.0)**2
imshow(im4)
show()
我创建了 4 个数字。当我关闭这些数字并想要运行另一个代码时,我收到消息:
Already Executing:
The Python Shell window is already
executing a command; please wait unit it is finished.
我必须关闭 python shell 窗口才能执行另一个命令。无论如何可以正确终止执行,所以我不必每次都关闭 python shell 来运行另一个脚本?