Metadata-Version: 2.1
Name: pyrealsense2
Version: 2.45.0.3276
Summary: Python Wrapper for Intel Realsense SDK 2.0.
Home-page: https://github.com/IntelRealSense/librealsense
Author: Intel(R) RealSense(TM)
Author-email: realsense@intel.com
License: Apache License, Version 2.0
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Multimedia :: Video
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Human Machine Interfaces
Classifier: Topic :: Scientific/Engineering :: Image Recognition
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks

Python Wrapper for Intel RealSense SDK 2.0
==========================================

The python wrapper for Intel RealSense SDK 2.0 provides the C++ to Python binding required to access the SDK.

Quick start
-----------

::

  import pyrealsense2 as rs
  pipe = rs.pipeline()
  profile = pipe.start()
  try:
    for i in range(0, 100):
      frames = pipe.wait_for_frames()
      for f in frames:
        print(f.profile)
  finally:
      pipe.stop()


