import threading import cv2 import tkinter as tk from tkinter import * from PIL import Image, ImageTk#图像控件 from Background.Thread_Demo import Thread_data from Data_demo import data_demo class Two_Layout(): def init(self, top): self.top = top self.canvas2 = Canvas(self.top, bg='LightSkyBlue', width=1100, height=610, highlightthickness=2, highlightbackground='Black') self.canvas2.place(x=0, y=28) data_demo.display_id = self.canvas2 Thread_data(self.Thread_()) def Thread_(self): self.cap = cv2.VideoCapture(0) t = threading.Thread(target=self.windows_display()) t.start() def windows_display(self): ref, frame = self.cap.read() data_demo.display_id.delete('all') label = tk.Label(data_demo.display_id, text='未接入摄像头!', font=("黑体", 25), width=15, height=1) if ref is False: label.place(x=400, y=300, anchor='nw') self.cap = cv2.VideoCapture(0) else: for widget in data_demo.display_id.winfo_children(): widget.destroy() image = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB) image1 = Image.fromarray(image) image2 = image1.resize((1100, 645), Image.ANTIALIAS) self.photo = ImageTk.PhotoImage(image=image2) data_demo.display_id.create_image(0, 0, image=self.photo, anchor=tk.NW) data_demo.display_id.after(15, self.windows_display)为什么在其他地方调用的filedialog.askopenfilename()起了冲突
时间: 2024-04-21 20:25:16 浏览: 112
这可能是由于你在其他部分的代码中使用了 `Tk()`,而这会创建一个新的主窗口,可能会影响你之前创建的主窗口和其他部件。你可以尝试使用 `Toplevel()` 创建一个子窗口,然后在子窗口中使用 `filedialog.askopenfilename()`,而不是在主窗口中使用。另外,确认你的代码中是否正确导入了 `filedialog`。如果你仍然无法解决问题,请提供更多的细节和代码,以便我能够更好地帮助你。
相关问题
import threading import cv2 import tkinter as tk from tkinter import * from PIL import Image, ImageTk#图像控件 from Background.Thread_Demo import Thread_data from Data_demo import data_demo class Two_Layout(): def __init__(self, top): self.top = top self.canvas2 = Canvas(self.top, bg='LightSkyBlue', width=1100, height=610, highlightthickness=2, highlightbackground='Black') self.canvas2.place(x=0, y=28) data_demo.display_id = self.canvas2 Thread_data(self.Thread_()) def Thread_(self): self.cap = cv2.VideoCapture(0) t = threading.Thread(target=self.windows_display()) t.start() def windows_display(self): ref, frame = self.cap.read() data_demo.display_id.delete('all') label = tk.Label(data_demo.display_id, text='未接入摄像头!', font=("黑体", 25), width=15, height=1) if ref is False: label.place(x=400, y=300, anchor='nw') self.cap = cv2.VideoCapture(0) else: for widget in data_demo.display_id.winfo_children(): widget.destroy() image = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB) image1 = Image.fromarray(image) image2 = image1.resize((1100, 645), Image.ANTIALIAS) self.photo = ImageTk.PhotoImage(image=image2) data_demo.display_id.create_image(0, 0, image=self.photo, anchor=tk.NW) data_demo.display_id.after(15, self.windows_display)为什么还是与filedialog.askopenfilename()起了冲突
你的代码中没有引入 `filedialog`,所以很难确定具体原因。但是,在你的代码中,没有直接调用 `filedialog.askopenfilename()`,所以很可能是其他部分的代码和 `filedialog` 产生了冲突。请检查你的代码并确定是否有其他部分调用了 `filedialog.askopenfilename()`。另外,检查你的代码是否正确导入了 `filedialog`。如果你仍然无法解决问题,请提供更多的细节和代码,以便我能够更好地帮助你。
import cv2 from pyzbar.pyzbar import decode import pyzbar.pyzbar as pyzbar import numpy as np from PIL import ImageGrab import time import tkinter as tk import threading import re import http.client import json # 显示框框 启动线程 def my_function(): impor
这段代码主要是用于实现二维码解码的功能。其中导入了cv2、pyzbar、numpy、PIL、time、tkinter、threading、re、http.client和json等库。其中cv2用于图像处理,pyzbar用于解码二维码,numpy用于数值计算,PIL用于图像处理,time用于计时,tkinter用于构建GUI界面,threading用于多线程处理,re用于正则表达式匹配,http.client用于网络通信,json用于处理JSON数据。本代码主要功能是解码二维码,常用于二维码扫描等应用场景。
阅读全文