调用python自带的gui制作库
一开始想用tkinter制作gui的,网上说是python自带的,结果输入:
1
|
import tkinter |
后,显示:
1
|
_importerror: no module named tkinter_ |
以为是没有安装,还利用apt-get install 命令安装了一堆东西,安装完了发现还是没有用。(⊙﹏⊙)b
后来看到如果是用的python2.7的话,需要输入
1
|
import tkinter |
然后就可以用了。
显示连续刷新的图片
开始用的tk的label功能来显示图片,需要等到调用mainloop()后才会显示图片,没找到可以刷新图像的方法;后来采用canvas,才找到了可以不用等到mainloop()就可以显示图片的方法,代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
from tkinter import * from pil import image, imagetk import time import os import cv2 num = 0 tk = tk() canvas = canvas(tk,width = 500 ,height = 500 ,bg = 'white' ) while num< 7 : num + = 1 filename = str (num) + '.jpg' if os.path.isfile(filename): img1 = cv2.imread(filename) im1 = image.fromarray(cv2.cvtcolor(img1,cv2.color_bgr2rgb)) img = imagetk.photoimage(image = im1) #img = imagetk.photoimage(file = filename) itext = canvas.create_image(( 250 , 150 ),image = img) canvas.pack() tk.update() tk.after( 1000 ) tk.mainloop() |
再后来发现用label也可以实现图片的刷新,关键在于是否加了:
1
|
tk.updata() |
使用label的程序如下,其中的.grid()用于设置显示的位置:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#coding=utf-8 import tkinter as tk from pil import image, imagetk import cv2 import os import time def btnhelloclicked(): labelhello.config(text = "hello tkinter!" ) def resize(w,h,w_box,h_box,im): f1 = 1.0 * w_box / w f2 = 1.0 * h_box / h factor = min ([f1, f2]) width = int (w * factor) height = int (h * factor) return im.resize((width,height),image.antialias) top = tk.tk() #-------------- image 1 -------------- for n in range ( 1 , 10 ): filename = str (n) + '.jpg' if os.path.isfile(filename): #top = tk.toplevel()#tk.tk() top.title( "test the net." ) #string labelhello = tk.label(top,text = str (n),height = 5 ,width = 20 ,fg = "blue" ) labelhello.grid(row = 0 ,column = 1 ) img1 = cv2.imread(filename) im1 = image.fromarray(cv2.cvtcolor(img1,cv2.color_bgr2rgb)) #---resize the image to w_box*h_box w_box = 500 h_box = 450 w,h = im1.size im_resized1 = resize(w,h,w_box,h_box,im1) bm1 = imagetk.photoimage(image = im_resized1) label1 = tk.label(top,image = bm1,width = w_box,height = h_box) label1.grid(row = 1 ,column = 0 ) top.update() top.after( 1000 ) top.mainloop() |
其中尝试了将 tk.tk()放在循环内部,但是运行到第二个循环的时候,会报错:
1
|
_tkinter.tclerror: image "pyimage2" doesn't exist |
需要将tk.tk替换为tk.toplevel(),但是每个循环都会新出现两个面板。
以上这篇python tkinter的图片刷新实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/alansss/article/details/85011293