Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 453 Bytes

README.rst

File metadata and controls

20 lines (16 loc) · 453 Bytes

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()