Metadata-Version: 1.1
Name: pyElphel
Version: 0.1
Summary: Use Elphel camera from python with opencv2
Home-page: https://github.com/hchauvet/pyElphel
Author: CHAUVET Hugo
Author-email: chauvet@ipgp.fr
License: GPL
Description: ========
        pyElphel
        ========
        
        Control Elphel camera 353 from python using RTSP protocol and from imgsrv access for full resoltion images.
        See the GitHub Page: https://github.com/hchauvet/pyElphel
        
        Requirement
        -----------
        
        * Python OpenCv 
          http://docs.opencv.org/trunk/doc/py_tutorials/py_setup/py_table_of_contents_setup/py_table_of_contents_setup.html#py-table-of-content-setup
        
        Installation
        ------------
        
        **From file**::
        
            python setup.py install
        
        **From pip**::
        
            pip install pyElphel
        
        Examples
        --------
        
        Video at full resolution (2592x1936) is impossible using RTSP. For this resolution use *grab_image_slow()*, which relies on imgsrv access through http.
        
        **Set parameters**::
        
            from pyElphel import Elphel
        
            cam = Elphel()
        
            cam.params['WOI_WIDTH'] = 1280
            cam.params['WOI_HEIGHT'] = 720
            cam.params['COLOR'] = 1
            cam.params['EXPOS'] = 10000
        
            cam.set_params()
        
            
        **Live display**::
        
        
            from pyElphel import Elphel
        
            with Elphel() as cam:
                cam.display()
         
            
        **Get single image**::
        
        
            from pyElphel import Elphel
        
            cam = Elphel()
            cam.init_live()
        
            img = cam.grab_image()
        
        
        **Get single image at full resolution**::
        
        
            from pyElphel import Elphel
        
            cam = Elphel()
        
            img = cam.grab_image_slow()
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Topic :: Multimedia :: Video
Classifier: Topic :: Scientific/Engineering :: Visualization
