
エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
RealSenseによるフィルター処理後の距離取得に関して - Qiita
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
RealSenseによるフィルター処理後の距離取得に関して - Qiita
frames = pipeline.wait_for_frames() # realsenseから画像取得 depth_frame = flames.get_depth_frame ... frames = pipeline.wait_for_frames() # realsenseから画像取得 depth_frame = flames.get_depth_frame # 画像から深度画像取得 # フィルター処理 temporal = rs.temporal_filter() depth_frame = temporal.process(depth_frame) # 深度画像からピクセル座標(100, 100)の深度を取得 distance = depth_frame.get_distance(100, 100) distance = depth_frame.get_distance(100, 100) AttributeError: 'pyrealsense2.pyrealsense2.frame' object has no attribute 'get_distance