主頁 > 知識(shí)庫 > 用Python給圖像算法做個(gè)簡單應(yīng)用界面

用Python給圖像算法做個(gè)簡單應(yīng)用界面

熱門標(biāo)簽:幫人做地圖標(biāo)注收費(fèi)算詐騙嗎 荊州云電銷機(jī)器人供應(yīng)商 溫州旅游地圖標(biāo)注 江蘇房產(chǎn)電銷機(jī)器人廠家 外呼不封號(hào)系統(tǒng) 電信營業(yè)廳400電話申請(qǐng) 遼寧400電話辦理多少錢 悟空智電銷機(jī)器人6 蘇州電銷機(jī)器人十大排行榜

以前在Windows上做界面用MFC,現(xiàn)在做算法都是基于Python,所以轉(zhuǎn)用Python的Tkinter庫來做。主要是能使用Opencv和Torch處理數(shù)據(jù),然后在界面上顯示。

效果如下:

主要包括3個(gè)板塊,其余還有一些小功能:

1、顯示固定的圖片。或從電腦加載一張圖片并顯示(涉及到按鈕的響應(yīng)函數(shù)編寫和彈窗)

2、下拉框和文本框的使用

3、進(jìn)度條的使用(涉及到多線程)

Tkinter支持控件自動(dòng)調(diào)整布局,但是時(shí)間比較趕就不研究了,使用固定位置布局,界面也不給調(diào)整。

控件名稱

  • Buttom 按鈕,軟件交互功能實(shí)現(xiàn)
  • Label (叫什么不重要),用來顯示圖片或文字
  • ComboBox 下拉框,做選擇
  • Entry 文本框,做文本輸入
  • Progressbar 進(jìn)度條,算法跑起來之后顯示進(jìn)度
  • LabelFrame (...),灰色的框框,模塊化布局控件

代碼如下:

import tkinter as tk
import tkinter.ttk as ttk
import tkinter.messagebox
import tkinter.filedialog
import cv2 as cv
from PIL import Image, ImageTk
import time
import threading
 
RELIEF=['flat', 'raised', 'sunken', 'solid', 'ridge', 'groove']
CURSOR=['arrow','circle','clock','cross','dotbox','exchange',
        'fleur','heart','man','mouse','pirate','plus',
        'shuttle','sizing','spider','spraycan','star','target',
        'tcross','trek','watch']
 
def PIL2CV(im):
    im = im[:, :, ::-1]
    return ImageTk.PhotoImage(Image.fromarray(im))
 
def Buttom1_CallBack():
    filename = tk.filedialog.askopenfilename() #彈出文件選擇對(duì)話框
    if filename=='': #用戶沒有選擇任何文件
        return
    new_img = cv.imread(filename)
    if new_img is None:
        tk.messagebox.showerror('抱歉', '圖片加載失??!')
        return
    new_img = cv.resize(new_img, (130, 120))
    new_img = PIL2CV(new_img)
    #后面兩句實(shí)現(xiàn)圖片切換顯示
    Label2.configure(image=new_img, width=130, height=120)
    Label2.image = new_img
    tk.messagebox.showinfo('提示','加載圖片完成!')
 
def Buttom2_CallBack():
    info = Combobox1.get()
    param = Entry1.get()
    tk.messagebox.showwarning('警告', '你選擇了:'+info+' '+param)
 
def process_code(delay):
    for i in range(100):
        Progressbar1['value'] = i+1
        root.update()
        time.sleep(delay)
    Buttom3.configure(text='開始處理', state='normal')
    tk.messagebox.showinfo('提示', '處理完成!')
    Progressbar1.configure(value=0)
 
def Buttom3_CallBack():
    yn = tk.messagebox.askyesno('警告','是否需要開始處理?')
    if not yn:
        return
 
    Buttom3.configure(text='處理中...', state='disabled') #控件失效
    delay = 0.01
 
    # 單獨(dú)開一個(gè)線程,綁定線程函數(shù)process_code,參數(shù)后面的','很關(guān)鍵
    # 不開線程界面會(huì)進(jìn)入處理函數(shù)死循環(huán),用戶體驗(yàn)不太好
    t = threading.Thread(target=process_code, args=(delay,))
    t.start()
 
def Buttom4_CallBack():
    global page_count
    if page_count=0:
        page_count = 0
        return
    else:
        page_count -= 1
        Label4.configure(text='第'+str(page_count)+'頁')
    return
 
def Buttom5_CallBack():
    global page_count
    if page_count>=100:
        page_count = 100
        return
    else:
        page_count += 1
        Label4.configure(text='第' + str(page_count) + '頁')
    return
 
#上面是控件的響應(yīng)函數(shù)
################################################################################
#下面是界面控件的布局
 
#主界面
root = tk.Tk()
root.title('python界面測(cè)試') #修改界面標(biāo)題
root.iconbitmap('img/tm.ico') #修改界面ico
root.geometry('800x500') #設(shè)定界面尺寸 HxW
root.resizable(width=False, height=False) #不允許調(diào)整窗口大小,不固定刪除此行
 
#添加兩個(gè)板塊邊界框
Frame1 = tk.LabelFrame(root, height=200, width=145)
Frame1.place(x=15, y=100)
Frame2 = tk.LabelFrame(root, text="結(jié)果顯示", height=400, width=620)
Frame2.place(x=170, y=5)
 
#添加圖片顯示框、加載圖片框、加載圖片按鈕
img = cv.imread('img/title.jpg') #opencv加載圖片
img = cv.resize(img, (140,70)) #圖片縮放
img = PIL2CV(img) #opencv格式轉(zhuǎn)pillow
Label1 = tk.Label(root, image=img) #初始化默認(rèn)圖片
Label1.place(x=15, y=20) #圖片顯示框在界面上的位置
 
Label2 = tk.Label(root,
                  width=18,height=7, #控件大?。ㄗ⒁鈫挝徊皇窍袼兀?
                  bg="white") #默認(rèn)白色背景
Label2.place(x=20,y=110) #圖片顯示框在界面上的位置
 
Buttom1 = tk.Button(root,
                    width=15,height=1, #按鈕大小
                    text='加載檢索圖片', #按鈕文本
                    relief=RELIEF[3], #按鈕的風(fēng)格
                    command=Buttom1_CallBack) #綁定響應(yīng)函數(shù)
Buttom1.place(x=25, y=250) #按鈕在界面上的位置
 
#添加參數(shù)文本框、下拉框、下拉框內(nèi)容輸出按鈕
Combobox1 = ttk.Combobox(root, width=17, height=1)
Combobox1['value'] = ('窗前明月光','疑是地上霜','舉頭望明月','明月照我影')
Combobox1.current(0)
Combobox1.place(x=15, y=320)
 
Label3 = tk.Label(root, text='參數(shù)')
Label3.place(x=15, y=350)
 
Entry1 = ttk.Entry(root, width=9) #文本框?yàn)樯稕]有H
Entry1.place(x=50, y=350)
Entry1.insert(0,'0.5')
 
Buttom2 = tk.Button(root,
                    width=15,height=1,
                    text='你選擇了什么?',
                    relief=RELIEF[3],
                    command=Buttom2_CallBack)
Buttom2.place(x=25, y=380)
 
#添加進(jìn)度條、開始處理按鈕
Progressbar1 = ttk.Progressbar(root, length=600, value=0, cursor=CURSOR[1])
Progressbar1.place(x=15, y=460)
 
Buttom3 = tk.Button(root,
                    width=15,height=1,
                    text='開始處理',
                    relief=RELIEF[3],
                    command=Buttom3_CallBack)
Buttom3.place(x=630, y=455)
 
#添加兩個(gè)滾動(dòng)按鈕
Buttom4 = tk.Button(root,
                    width=3,height=1,
                    text='',
                    relief=RELIEF[1],
                    command=Buttom4_CallBack)
Buttom4.place(x=380, y=410)
 
global page_count #全局變量,用來控制頁碼
page_count=0
Label4 = tk.Label(root, text='第0頁')
Label4.place(x=420, y=410)
 
Buttom5 = tk.Button(root,
                    width=3,height=1,
                    text='>',
                    relief=RELIEF[1],
                    command=Buttom5_CallBack)
Buttom5.place(x=470, y=410)
 
root.mainloop()
#這句話后面不能有代碼

以上就是用Python給圖像算法做個(gè)簡單應(yīng)用界面的詳細(xì)內(nèi)容,更多關(guān)于python 應(yīng)用界面的資料請(qǐng)關(guān)注腳本之家其它相關(guān)文章!

您可能感興趣的文章:
  • Python猜數(shù)字算法題詳解
  • python算法題 鏈表反轉(zhuǎn)詳解
  • 一道python走迷宮算法題
  • python實(shí)現(xiàn)dbscan算法
  • Python機(jī)器學(xué)習(xí)之PCA降維算法詳解
  • Python機(jī)器學(xué)習(xí)算法之決策樹算法的實(shí)現(xiàn)與優(yōu)缺點(diǎn)
  • python排序算法的簡單實(shí)現(xiàn)方法
  • Python實(shí)現(xiàn)K-means聚類算法并可視化生成動(dòng)圖步驟詳解
  • python利用K-Means算法實(shí)現(xiàn)對(duì)數(shù)據(jù)的聚類案例詳解
  • python入門之算法學(xué)習(xí)
  • python實(shí)現(xiàn)線性回歸算法
  • Python實(shí)現(xiàn)七大查找算法的示例代碼
  • python 算法題——快樂數(shù)的多種解法

標(biāo)簽:宿遷 黃山 景德鎮(zhèn) 三沙 欽州 喀什 臺(tái)灣 濟(jì)南

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《用Python給圖像算法做個(gè)簡單應(yīng)用界面》,本文關(guān)鍵詞  用,Python,給,圖像,算法,做個(gè),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《用Python給圖像算法做個(gè)簡單應(yīng)用界面》相關(guān)的同類信息!
  • 本頁收集關(guān)于用Python給圖像算法做個(gè)簡單應(yīng)用界面的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章