Metadata-Version: 2.1
Name: multicam
Version: 1.0.3
Summary: Syncronous reading from multiple webcams
Home-page: UNKNOWN
Author: Søren Rasmussen
Author-email: soren.rasmussen@alexandra.dk
License: UNKNOWN
Description: Synchronized reading of multiple webcams using v4l2
        ----------------------------------------
        Only runs under Linux
        
        Installation
        ------------
        `sudo apt install libjpeg-turbo8-dev libjpeg-dev cmake`
        `python setup.py install` for system-wide installation
        `python setup.py install --user` for user-specific installation
        
        
        Use
        ---
        ```
        import numpy as np
        import multicam as mc
        with mc.Multicam(['/dev/video0','/dev/video2'], (640,480), 'YUYV', fps=30) as cs:
            try:
                while True: 
                    res = cs.read() #RGB images
                    print(res.shape)
            except KeyboardInterrupt:
                pass
        
        with mc.Camera(0, (640,480), 'YUYV', fps=30) as c:
            print(c.read().shape)
        ``` 
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Requires-Python: >=3.6
Description-Content-Type: text/markdown
