Metadata-Version: 1.1
Name: primesense
Version: 2.2.0.30-5
Summary: OpenNI2 and NiTE2 python bindings
Home-page: http://www.openni.org/
Author: PrimeSense Inc
Author-email: primesense.com
License: MIT
Description: Official `PrimeSense <http://www.primesense.com/>`_ Python-bindings for `OpenNI2 <http://www.openni.org/>`_
        and `NiTE2 <http://www.openni.org/files/nite/>`_.
        
        This package provides only the Python bindings; be sure to install OpenNI (and optionally NiTE) first.
        
        Example::
            
            from primesense import openni2
            
            openni2.initialize()     # can also accept the path of the OpenNI redistribution
            
            dev = openni2.Device.open_any()
            print dev.get_sensor_info()
            
            depth_stream = dev.create_depth_stream()
            depth_stream.start()
            frame = depth_stream.read_frame()
            frame_data = frame.get_buffer_as_uint16()
            depth_stream.stop()
            
            openni2.unload()
        
        
        .. note:: Refer to the C API for documentation
        
        
Keywords: PrimeSense,OpenNI,OpenNI2,Natural Interaction,NiTE,NiTE2
Platform: POSIX
Platform: Windows
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Operating System :: MacOS
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Provides: primesense
