Python library to work with video capture

0

Is there a Python library that is efficient (even more than OpenCV) for working with video capture and resizing it (changing the image view size without greatly changing the quality)?

EDITED:

In my case I want to capture the video and resize it (real zoom) in real time (type presses a key and zooms 2x in the captured image). That's why it has to be a good realtime video capture library because for larger zoons the image blurs a lot, ie the library would have to have an "image processing" when capturing the image or when resizing it. >     

asked by anonymous 03.04.2017 / 14:20

1 answer

2

OpenCV is one of the oldest lib for Computer Vision, I believe it has other powerful libs on the web but it is difficult to compete with OpenCV because it was created by Intel itself, a respected company in the market current, depending on what you want to do, if you just record a video and resize, there are outputs much easier, because to work with it requires a little more concrete knowledge in Computer Vision.    
Thinking About This A Group of Developers Created a Library to Make It Easier to Work with Computer Vision, named it SimpleCV follows an example to capture a webcam video, cut it out and an x-size using SimpleCV

from SimpleCV import *    
cam = Camera()

while(True):
    cam.getImage().crop(200,200,200,200).show() # args is x,y, w,h
    
03.04.2017 / 21:23