当我从cv2.imshow窗口按下某个键时,我需要程序发出输入请求。
现在我已经设法将输入请求发送到python控制台。但是可以,但是我必须一直在两个窗口之间切换,而且看起来不太好。
while True:
ret, frame = video_capture.read()
rgb_frame = frame[:, :, ::-1]
cv2.imshow('Video', frame)
if cv2.waitKey(1) & 0xFF == ord('n'):
print("Initiating face encoding...")
create_encoding = True
name = input("Name the person...")
if create_encoding
之后还有很多其他代码,以create_encoding = False
结尾
有人可以告诉我如何在此cv2.waitkey事件上为输入请求或消息框创建弹出窗口