Bye Bye Moore

PoCソルジャーな零細事業主が作業メモを残すブログ

2023-01-06から1日間の記事一覧

RealSense SDK for Pythonを Ubuntu22LTS on Raspi4B で試す その6:一定距離以内の物体表示

import pyrealsense2 as rs import numpy as np import cv2 conf = rs.config() width = 640 height = 480 pipe = rs.pipeline() profile = pipe.start(conf) # 普通の描画 conf.enable_stream(rs.stream.depth, width, height, rs.format.z16, 30) conf.ena…