Any quick Python GUI to display live images from Camera
问题 I am trying to display live images from my 1394 camera. Currently my code is able to obtain images in a loop from the camera and I was looking for any quick GUI that will update dynamically (as a separate thread). I can do this in PyQt maybe using QThreads but is there any recommendation or faster way of doing this?? Here's my code #Loop capturing frames from camera for frame in range(1,500): print 'frame:',frame TIME.sleep(1) #capture frame every second image_binary = pycam.cam