- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在创建一个程序来使用Tkinter-OpenCV-Python检测对象。
我已经使用轨迹栏创建了界面,并且上传了图片,但是在更改轨迹栏的值时,该图片中的图片并未更新
from Tkinter import * # Para Interfaz Grafica
import Tkinter
import gtk # Para Obtener Ancho/Alto
import tkFileDialog # Para Buscar Archivo
import cv2 # Libreria OpenCV
from PIL import Image, ImageTk
import numpy as np
#*******************************************************************
#Se crea la Pantalla Principal, tomando el Ancho/Alto de la Pantalla
#Se captura el ancho y alto
width = gtk.gdk.screen_width()
height = gtk.gdk.screen_height()
app = Tk()
#app.config(bg="red") # Le da color al fondo
app.geometry(str(width)+"x"+str(height)) # Cambia el tamaño de la ventana
app.title("TEST")
#*******************************************************************
#Buscar Imagen
def select_image():
# open a file chooser dialog and allow the user to select an input
# image
path = tkFileDialog.askopenfilename()
if len(path) > 0: # Si se ha cargado la imagen
# cargar imagen del disco
image = cv2.imread(path,1)
data = image.shape
# OpenCV representa imagenes en BGR ; sin embargo PIL representa
# imagenes en RGB , es necesario intercambiar los canales
image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)
hsv = cv2.cvtColor(img, cv2.COLOR_BGR2HSV)
lw_range = np.array([0, 0, 0])
up_range = np.array([255, 255, 255])
mask = cv2.inRange(hsv, lw_range, up_range)
res = cv2.bitwise_and(image,image, mask= mask)
# convertir la imagen a formato PIL
image = Image.fromarray(res).resize((570,570),Image.ANTIALIAS)
# ...Luego a formato ImageTk
image=ImageTk.PhotoImage(image)
label_img = Label(app, image = image,relief=SOLID)
label_img.image=image
label_img.pack()
label_img.place(x=790,y=5)
label1 = Label(app, text="Informacion Imagen\nAlto:{}\nAncho:{}\nCanales:{}".format(data[0],data[1],data[2]))
label1.pack()
label1.place(x=790,y=577)
btn = Button(app, text="Abrir Imagen", command=select_image)
btn.pack(side="bottom", fill="both", expand="yes", padx="10", pady="10")
btn.place(x=5,y=5)
btn.configure(width=12)
#********************************************
#LABEL H
label2=Label(app,text = 'Filtro HSV')
label2.place(x=0,y=50)
label2.configure(width=7)
label2.configure(height=2)
#LABEL H
label10=Label(app,text = 'Hue')
label10.place(x=0,y=70)
label10.configure(width=7)
label10.configure(height=2)
#SLIDER H MINIMO
Hmin = StringVar()
w1 = Scale(app, from_=0, to=255, orient=HORIZONTAL,variable = Hmin)
w1.pack()
w1.place(x=70,y=70)
w1.configure(width=15)
#SLIDER H MAXIMO
Hmax= StringVar()
w2 = Scale(app, from_=0, to=255, orient=HORIZONTAL,variable = Hmax)
w2.pack()
w2.place(x=190,y=70)
w2.configure(width=15)
#LABEL S
label11=Label(app,text = 'Saturation')
label11.place(x=0,y=120)
label11.configure(width=7)
label11.configure(height=2)
#SLIDER S MINIMO
Smin= StringVar()
w3 = Scale(app, from_=0, to=255, orient=HORIZONTAL,variable = Smin)
w3.pack()
w3.place(x=70,y=120)
w3.configure(width=15)
#SLIDER S MAXIMO
Smax= StringVar()
w4 = Scale(app, from_=0, to=255, orient=HORIZONTAL, variable = Smax)
w4.pack()
w4.place(x=190,y=120)
w4.configure(width=15)
#LABEL V
label11=Label(app,text = 'Value')
label11.place(x=0,y=170)
label11.configure(width=7)
label11.configure(height=2)
#SLIDER V MINIMO
Vmin = StringVar()
w5 = Scale(app, from_=0, to=255, orient=HORIZONTAL, variable = Vmin)
w5.pack()
w5.place(x=70,y=170)
w5.configure(width=15)
#SLIDER V MAXIMO
Vmax = StringVar()
w6= Scale(app, from_=0, to=255, orient=HORIZONTAL,variable = Vmax)
w6.pack()
w6.place(x=190,y=170)
w6.configure(width=15)
#********************************************
app.mainloop()
最佳答案
好:D
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Interfaz para procesar Imagenes
import Tkinter as tk
from PIL import Image
from PIL import ImageTk
import tkFileDialog
import time
import cv2
import numpy as np
from subprocess import check_output
from pyscreenshot import grab
from threading import Thread, Lock
once = True
img_screenshot = None
class App:
original_image = None
hsv_image = None
# switch to make sure screenshot not taken while already pressed
taking_screenshot = False
def __init__(self, master):
self.img_path = None
frame = tk.Frame(master)
frame.grid()
root.title("Cultivos")
width = root.winfo_screenwidth()
height = root.winfo_screenheight()
root.geometry('{}x{}'.format(width,height))
#self.hue_lbl = tk.Label(text="Hue", fg='red')
#self.hue_lbl.grid(row=2)
self.low_hue = tk.Scale(master, label='Low',from_=0, to=179, length=200,showvalue=2,orient=tk.HORIZONTAL, command=self.show_changes)
self.low_hue.place(x=0, y=50)
self.high_hue = tk.Scale(master,label='High', from_=0, to=179, length=200,orient=tk.HORIZONTAL, command=self.show_changes)
self.high_hue.place(x=200, y=50)
self.high_hue.set(179)
###########################################################################################################
#self.sat_lbl = tk.Label(text="Saturation", fg='green')
#self.sat_lbl.grid(row=5)
self.low_sat = tk.Scale(master, label='Low',from_=0, to=255, length=200,orient=tk.HORIZONTAL, command=self.show_changes)
self.low_sat.place(x=0,y=120)
self.high_sat = tk.Scale(master, label="High", from_=0, to=255, length=200,orient=tk.HORIZONTAL, command=self.show_changes)
self.high_sat.place(x=200,y=120)
self.high_sat.set(255)
###########################################################################################################
#self.val_lbl = tk.Label(text="Value", fg='Blue')
#self.val_lbl.grid(row=8)
self.low_val = tk.Scale(master, label="Low",from_=0, to=255, length=200,orient=tk.HORIZONTAL, command=self.show_changes)
self.low_val.place(x=0,y=190)
self.high_val = tk.Scale(master, label="High",from_=0, to=255, length=200,orient=tk.HORIZONTAL, command=self.show_changes)
self.high_val.place(x=200,y=190)
self.high_val.set(255)
#self.high_val.grid(row=10)
###########################################################################################################
# buttons
#self.print_btn = tk.Button(text='Print', command=self.print_values)
#self.print_btn.place(x=0,y=250)
# Open
self.open_btn = tk.Button(text="Open", command=self.open_file)
self.open_btn.place(x=0,y=10)
#self.open_btn.grid(row=6, column=1)
###########################################################################################################
# timer label
#self.screenshot_timer_lbl = tk.Label(text="Timer", fg='Red')
#self.screenshot_timer_lbl.grid(row=8, column=1)
########################################################################################################## Images
# images
self.hsv_img_lbl = tk.Label(text="HSV", image=None)
self.hsv_img_lbl.place(x=790,y=380)
#self.hsv_img_lbl.grid(row=0, column=0)
self.original_img_lbl = tk.Label(text='Original',image=None)
self.original_img_lbl.place(x=790,y=0)
#self.original_img_lbl.grid(row=0, column=1)
##########################################################################################################
def open_file(self):
global once
once = True
img_file = tkFileDialog.askopenfilename() # Buscar Archivo
# this makes sure you select a file
# otherwise program crashes if not
if img_file != '': # Si La imagen existe
self.img_path = img_file
# Esto solo se asegura de que la imagen se muestra despues de abrirlo
self.low_hue.set(self.low_hue.get()+1)
self.low_hue.set(self.low_hue.get()-1)
else:
print('No se Selecciono Nada')
return 0
def show_changes(self, *args):
global once, img_screenshot
if self.img_path == None: # Si la imagen no hace nada
return 0
# obtener valores de los sliders
# Bajos
low_hue = self.low_hue.get()
low_sat = self.low_sat.get()
low_val = self.low_val.get()
# Altos
high_hue = self.high_hue.get()
high_sat = self.high_sat.get()
high_val = self.high_val.get()
# No hace nada si los valores bajos van mas altos que los valores altos
if low_val > high_val or low_sat > high_sat or low_hue > high_hue:
return 0
# Establece la imagen original una vez, manipula la copia en las siguientes iteraciones
if once:
# Obtiene la imagen del archivo
if self.img_path != 'screenshot':
#img_path = 'objects.png'
# carga BGR
self.original_image = cv2.imread(self.img_path,1)
# image resized
self.original_image = self.resize_image(self.original_image)
self.hsv_image = self.original_image.copy()
#convierte imagen a HSV
self.hsv_image = cv2.cvtColor(self.hsv_image, cv2.COLOR_BGR2HSV)
# gets screenshot
else:
self.original_image = img_screenshot
self.hsv_image = img_screenshot.copy()
#converts image to HSV
self.hsv_image = cv2.cvtColor(self.hsv_image, cv2.COLOR_BGR2HSV)
# OpenCV representa imagenes en orden BGR;
#Sin embargo PIL representa imagenes en orden RGB, por lo que tenemos que intercambiar los canales
self.original_image = cv2.cvtColor(self.original_image, cv2.COLOR_BGR2RGB)
# convierte imagen a formato PIL
self.original_image = Image.fromarray(self.original_image)#.resize((500,500), Image.ANTIALIAS)
# convierta a formato ImageTk
self.original_image = ImageTk.PhotoImage(self.original_image)
# Actualizar la etiqueta de la imagen original
self.original_img_lbl.configure(image=self.original_image)
# Keeping a reference! b/ need to!
#Mantener una referencia! B / necesidad de!
self.original_img_lbl.image = self.original_image
once = False
# Define los valores inferior y superior de la mascara
# define range of colors in HSV (hue up to 179, sat-255, value-255
lower_color = np.array([low_hue,low_sat,low_val])
upper_color= np.array([high_hue,high_sat,high_val])
# red - 0,255,255 (low (hue-10,100,100) high(hue+10,255,255)
# green 60,255,255
# blue -120,255,255
#crea una mascara con el resultado
mask = cv2.inRange(self.hsv_image, lower_color, upper_color)
#res = cv2.bitwise_and(self.original_image.copy(), self.original_image.copy(), mask=mask)
# convierte a formato RGB
#maskbgr = cv2.cvtColor(mask, cv2.COLOR_HSV2BGR)
#maskrgb = cv2.cvtColor(maskbgr, cv2.COLOR_BGR2RGB)
# convierte a formato PIL
mask = Image.fromarray(mask)
# convierte a formato ImageTk
mask = ImageTk.PhotoImage(mask)
# Ajuste de la imagen de hsv a tk etiqueta de imagen
self.hsv_img_lbl.configure(image=mask)
# adding a reference to the image to Prevent python's garbage collection from deleting it
#Anadiendo una referencia a la imagen para evitar que python garbage collection lo elimine
self.hsv_img_lbl.image = mask
def resize_image(self,img,*args):
# Desembala anchura, altura
height, width,_ = img.shape
print("Original size: {} {}".format(width, height))
count_times_resized = 0
while width > 500 or height > 500:
#if width > 300 or height > 300:
# divides images WxH by half
width = width / 2
height = height /2
count_times_resized += 1
# prints x times resized to console
if count_times_resized != 0:
print("Resized {}x smaller, to: {} {}".format(count_times_resized*2,width, height))
# makes sures image is not TOO small
if width < 300 and height < 300:
width = width * 2
height = height * 2
img = cv2.resize(img,(width,height))
return img
# Instance of Tkinter
root = tk.Tk()
# New tkinter instnace of app
app = App(root)
# loops over to keep window active
root.mainloop()
关于python - Trackbar HSV OpenCv Tkinter Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41083597/
我正在处理一组标记为 160 个组的 173k 点。我想通过合并最接近的(到 9 或 10 个组)来减少组/集群的数量。我搜索过 sklearn 或类似的库,但没有成功。 我猜它只是通过 knn 聚类
我有一个扁平数字列表,这些数字逻辑上以 3 为一组,其中每个三元组是 (number, __ignored, flag[0 or 1]),例如: [7,56,1, 8,0,0, 2,0,0, 6,1,
我正在使用 pipenv 来管理我的包。我想编写一个 python 脚本来调用另一个使用不同虚拟环境(VE)的 python 脚本。 如何运行使用 VE1 的 python 脚本 1 并调用另一个 p
假设我有一个文件 script.py 位于 path = "foo/bar/script.py"。我正在寻找一种在 Python 中通过函数 execute_script() 从我的主要 Python
这听起来像是谜语或笑话,但实际上我还没有找到这个问题的答案。 问题到底是什么? 我想运行 2 个脚本。在第一个脚本中,我调用另一个脚本,但我希望它们继续并行,而不是在两个单独的线程中。主要是我不希望第
我有一个带有 python 2.5.5 的软件。我想发送一个命令,该命令将在 python 2.7.5 中启动一个脚本,然后继续执行该脚本。 我试过用 #!python2.7.5 和http://re
我在 python 命令行(使用 python 2.7)中,并尝试运行 Python 脚本。我的操作系统是 Windows 7。我已将我的目录设置为包含我所有脚本的文件夹,使用: os.chdir("
剧透:部分解决(见最后)。 以下是使用 Python 嵌入的代码示例: #include int main(int argc, char** argv) { Py_SetPythonHome
假设我有以下列表,对应于及时的股票价格: prices = [1, 3, 7, 10, 9, 8, 5, 3, 6, 8, 12, 9, 6, 10, 13, 8, 4, 11] 我想确定以下总体上最
所以我试图在选择某个单选按钮时更改此框架的背景。 我的框架位于一个类中,并且单选按钮的功能位于该类之外。 (这样我就可以在所有其他框架上调用它们。) 问题是每当我选择单选按钮时都会出现以下错误: co
我正在尝试将字符串与 python 中的正则表达式进行比较,如下所示, #!/usr/bin/env python3 import re str1 = "Expecting property name
考虑以下原型(prototype) Boost.Python 模块,该模块从单独的 C++ 头文件中引入类“D”。 /* file: a/b.cpp */ BOOST_PYTHON_MODULE(c)
如何编写一个程序来“识别函数调用的行号?” python 检查模块提供了定位行号的选项,但是, def di(): return inspect.currentframe().f_back.f_l
我已经使用 macports 安装了 Python 2.7,并且由于我的 $PATH 变量,这就是我输入 $ python 时得到的变量。然而,virtualenv 默认使用 Python 2.6,除
我只想问如何加快 python 上的 re.search 速度。 我有一个很长的字符串行,长度为 176861(即带有一些符号的字母数字字符),我使用此函数测试了该行以进行研究: def getExe
list1= [u'%app%%General%%Council%', u'%people%', u'%people%%Regional%%Council%%Mandate%', u'%ppp%%Ge
这个问题在这里已经有了答案: Is it Pythonic to use list comprehensions for just side effects? (7 个答案) 关闭 4 个月前。 告
我想用 Python 将两个列表组合成一个列表,方法如下: a = [1,1,1,2,2,2,3,3,3,3] b= ["Sun", "is", "bright", "June","and" ,"Ju
我正在运行带有最新 Boost 发行版 (1.55.0) 的 Mac OS X 10.8.4 (Darwin 12.4.0)。我正在按照说明 here构建包含在我的发行版中的教程 Boost-Pyth
学习 Python,我正在尝试制作一个没有任何第 3 方库的网络抓取工具,这样过程对我来说并没有简化,而且我知道我在做什么。我浏览了一些在线资源,但所有这些都让我对某些事情感到困惑。 html 看起来
我是一名优秀的程序员,十分优秀!