我正在编写一个python脚本,它将有一个ASCII菜单来设置一个游戏中时光倒流。如果服务器无法使用,请将图像发送到我的网络服务器或USB。
我正在做线程脚本。所以我不确定它是一个线程问题还是我得到了错误:TypeError: 'tuple' object is not callable
。
我的代码(full code):
class timelaps(threading.Thread):
"""docstring for timelaps"""
def __init__(self, res, delay, numberOfImages):
super(timelaps, self).__init__()
self.delay = delay
if delay < 20:
self.delay = 20
pass
self.numberOfImages = numberOfImages
def run(self):
currentImage = 0
camera = picamera.PiCamera()
camera.resolution(2592, 1944)
我遇到错误的camera.resolution(2592, 1944)
行。
根据{{3}},应该只有camera.resolution(2592, 1944)
,并且应该将解决方案设置为{{1}}。
有什么建议吗?