Metadata-Version: 1.1
Name: cvloop
Version: 0.2.0
Summary: cvloop allows online video transformation and evaluation with OpenCV. Designed for jupyter notebooks.
Home-page: https://github.com/shoeffner/cvloop
Author: Sebastian Höffner
Author-email: info@sebastian-hoeffner.de
License: MIT
Download-URL: https://github.com/shoeffner/cvloop/tarball/0.2.0
Description: cvloop
        ======
        
        Provides cvloop, a way to show opencv video loops. Designed for jupyter notebooks.
        
        **Simple example**: Show webcam feed.
        
        .. code-block:: python
        
            from cvloop import cvloop
            cvloop()
        
        **More complex example**: Show webcam feed side by side with inverted image.
        
        .. code-block:: python
        
            from cvloop import cvloop
            cvloop(function=lambda frame: 255 - frame, side_by_side=True)
        
        **Complex example**: Show video file with background extraction (See `OpenCV Documentation`_; `Video`_).
        
        .. code-block:: python
        
            from cvloop import cvloop
            import cv2
        
            def mog2(frame):
                return mog2.fgbg.apply(frame)
            mog2.fgbg = cv2.createBackgroundSubtractorMOG2()
        
            cvloop('768x576.avi', function=mog2, side_by_side=True)
        
        **More examples**: For more examples check out the `examples notebook`_.
        
        Requirements
        ------------
        
        -  Python 3 (tested with 3.6)
        -  OpenCV 3.1
        -  Jupyter
        
        Dependencies
        ------------
        
        -  matplotlib
        -  numpy
        
        .. _`OpenCV Documentation`: http://docs.opencv.org/3.1.0/db/d5c/tutorial_py_bg_subtraction.html
        .. _`Video`: https://github.com/opencv/opencv_extra/tree/master/testdata/cv/video
        .. _`examples notebook`: https://github.com/shoeffner/cvloop/blob/master/examples/cvloop_examples.ipynb
        
        
Keywords: OpenCV,cv2,video,loop,jupyter,notebook
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Multimedia :: Video :: Display
