simple-cv2-wrapper

A very simple wrapper for cv2 for usual stuff


License
Other
Install
pip install simple-cv2-wrapper==0.1.0

Documentation

Simple Cv2 Wrapper

a simple wrapper for cv2 common stuff

Usage

with CV2Capture(0) as video:
    for frame in video:
        frame = imutils.rotate(frame, 15)
        video.show(frame) # video.show() also works if there is no modification on the frame