what kind of module, syntax, function or do i need to use classes (oop)? i am still a baby python3, opencv4....please help
gui.py
'''
from guizero import App, PushButton
def do_nothing()
print('Button was pressed')
app=App()
button=PushButton(app,command=do_nothing)
app.display()
'''
main.py
'''
import numpy as np
import cv2
cap = cv2.VideoCapture(0)
cap.set(3,640) # set Width
cap.set(4,480) # set Height
while(True):
ret, frame = cap.read()
frame = cv2.flip(frame, -1) # Flip camera vertically
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
cv2.imshow('frame', frame)
cv2.imshow('gray', gray)
k = cv2.waitKey(30) & 0xff
if k == 27: # press 'ESC' to quit
break
'''
right now, i just wanted to have simple ui...by just pressing ''(button1), the main.py will pop-up