我正在制作某种基本的图像过滤器应用程序。我有一个打开和初始化图像的函数,但变量仅保留在函数中,而我无法从另一个函数中获取它们,因此我需要全局定义变量?
我试图全局定义变量并使用示例图像对其进行初始化,然后在函数中我向该变量分配了新数据(或没有?),但是打开文件的函数似乎并未重写全局变量,因此我的过滤器函数适用到我的示例图片,而不是我打开的目标图片。
image = Image.open("test.jpg")
draw = ImageDraw.Draw(image)
width = image.size[0]
height = image.size[1]
pix = image.load()
class ExampleApp(QtWidgets.QMainWindow, design.Ui_MainWindow):
def __init__(self):
super().__init__()
self.setupUi(self)
self.load_file.triggered.connect(self.load_image) #Can I here call load_image with arguments? How?
self.grayscale.triggered.connect(self.Grayscale)
def browse_file(self):
file_name = QtWidgets.QFileDialog.getOpenFileName(self, 'Pick a picture',"","JPEG (*.jpg;*.jpeg);;PNG (*.png);;All Files (*)")[0]
if file_name:
print (file_name)
return file_name
else:
print("File couldn't be open")
return 0
def load_image(self):
file_name = self.browse_file()
pixmap = QPixmap(file_name)
self.pic_box.setPixmap(pixmap)
self.pic_box.resize(pixmap.width(), pixmap.height())
print(pixmap.width(), pixmap.height())
self.resize(pixmap.width(), pixmap.height())
image = Image.open(file_name) #Here I'm trying assign new image and it's properties to variables I defined on the first lines
draw = ImageDraw.Draw(image)
width = image.size[0]
height = image.size[1]
pix = image.load()
self.show()
def Grayscale(self): #Function works with test.jpg, not with file I'm trying to load
for i in range(width):
for j in range(height):
a = pix[i, j][0]
b = pix[i, j][1]
c = pix[i, j][2]
S = (a + b + c) // 3
draw.point((i, j), (S, S, S))
image.save("Grayscale.jpg", "JPEG")
我的目标是以某种方式将带有文件名的字符串传递给全局变量,以便每个函数都可以访问它。
还有其他design.py
文件,我是由QtDesigner的.ui文件制成的,但我认为问题并不取决于它
答案 0 :(得分:2)
如果您真的想使用全局变量,那您就不能这样做
filename = "test.jpg"
image = Image.Open(filename)
...
在顶部?
答案 1 :(得分:1)
要从一个函数覆盖一个全局变量,您需要在其上方有一行明确表明您试图更改全局变量,而不是创建局部变量。在您的功能更改中:
image = Image.open(file_name)
收件人:
global image
image = Image.open(file_name)