'PyCapture2.Image'对象没有属性'read'

时间:2019-07-01 18:32:36

标签: python tkinter camera

我正在尝试在TKInter中显示图片。我在FLEA3点灰相机中使用Pycapture库。我可以拍照,但是当我尝试在GUI中显示时,显示错误,指出Pycapture没有属性“ read”

导入PyCapture2 从sys导入出口 从PIL导入ImageTk 导入PIL.Image 从进口睡眠 从tkinter导入*

enableEmbeddedTimestamp(camera,True)

camera.startCapture()

img = ImageTk.PhotoImage(PIL.Image.open(grabImages(camera, 1)))
showImage = Label(imageContainer, image=img)
showImage.pack(side=BOTTOM, expand="yes")
imageLabel.create_image(20, 20, anchor="n", image=img)

camera.stopCapture()

0 个答案:

没有答案