如何在python中定义空变量或将值从函数传递给全局变量? [复制]
Posted
技术标签:
【中文标题】如何在python中定义空变量或将值从函数传递给全局变量? [复制]【英文标题】:How to define empty variable in python or pass value from a function to global variable? [duplicate] 【发布时间】:2019-06-01 18:15:15 【问题描述】:我正在制作某种基本的图像过滤器应用程序。我有一个打开和初始化图像的函数,但变量只保留在函数中,我无法从另一个函数中获取它们,所以我需要定义全局变量?
我尝试全局定义变量并使用示例图像初始化它们,然后在函数中我为该变量分配了新数据(或没有?)但似乎打开文件的函数不会重写全局变量,所以我的过滤器函数适用到我的示例图像,而不是我打开的目标图像。
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 文件制作的,但我认为问题不取决于它
【问题讨论】:
【参考方案1】:如果你真的想使用全局变量,那你就不能这样做
filename = "test.jpg"
image = Image.Open(filename)
...
在顶部?
【讨论】:
我只是 Python 的第二天)也许我没听懂你,但你的建议对我的情况没有帮助。如何从文件打开功能重写全局变量?有可能吗?【参考方案2】:要从函数中覆盖全局变量,您需要在其上方有一行明确说明您正在尝试更改全局变量,而不是创建本地变量。在您的功能更改中:
image = Image.open(file_name)
到:
global image
image = Image.open(file_name)
Python function global variables?
【讨论】:
以上是关于如何在python中定义空变量或将值从函数传递给全局变量? [复制]的主要内容,如果未能解决你的问题,请参考以下文章