Intel Realsense D435 python 实战(二)

本文详细介绍了Intel RealSense SDK的使用方法,包括如何从GitHub获取最新版本的SDK,探索其丰富的资源如Sample Code、Tools及Community Projects。文章还涵盖了SDK包含的组件、如何开始流式传输帧并提取像素深度值,以及在Windows环境下安装SDK的注意事项。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

2战 2019年9月6日

  1. Recorded Camera Data https://github.com/IntelRealSense/librealsense/blob/development/src/media/readme.md(不知道干嘛用的?)然后点击Sample Datahttps://github.com/IntelRealSense/librealsense/blob/development/doc/sample-data.md,拖到页面最后,下了几个.bag文件,用Intel Realsense Viewer加载,显示如下:
    在这里插入图片描述
    它好像就是个可以录制和回放的工具!

  2. Intel RealSense产品商城
    https://store.intelrealsense.com/products.html

  3. Windows Distribution
    https://github.com/IntelRealSense/librealsense/blob/development/doc/distribution_windows.md
    (好像对我没什么用)

  4. What’s included in the SDK
    https://github.com/IntelRealSense/librealsense/tree/development#whats-included-in-the-sdk
    (好像SDK的tools文件夹里确实有一些有用的东西)
    在这里插入图片描述

  5. start streaming frames and extracting the depth value of a pixel
    不用python,也可以从 https://github.com/IntelRealSense/librealsense/tree/development#ready-to-hack 获得一些关于如何从像素中提取深度信息的操作模式与方法。

librealsense/wrappers/python/
注意使用前安装合适版本的SDK

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

遇到了一些麻烦,尝试安装window10 SDK,安装前注意系统版本:
在这里插入图片描述
win10 SDK在此下载:https://developer.microsoft.com/en-us/windows/downloads/sdk-archive

评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Dontla

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值