https://github.com/IntelRealSense/librealsense/issues/1413
deprojection pixels to 3d point · Issue #1413 · IntelRealSense/librealsense
Required Info Camera Model SR300 Operating System & Version Win 10 Platform PC SDK Version 2.10.1 I am trying to get 3d point of objects using aligned color and depth frames that i have in orde...
github.com
depth_sensor = profile.get_device().first_depth_sensor()
depth_scale = depth_sensor.get_depth_scale()
depth_frame = frames.get_depth_frame()
color_frame = frames.get_color_frame()
depth_intrin = depth_frame.profile.as_video_stream_profile().intrinsics
color_intrin = color_frame.profile.as_video_stream_profile().intrinsics
depth_to_color_extrin = depth_frame.profile.get_extrinsics_to(color_frame.profile)
# 우리가 찾고 싶은 2d pixel
depth_pixel = [100, 100]
depth= depth_frame.get_distance(100,100)
# 그에 대응 하는 3d points 값
depth_point = rs.rs2_deproject_pixel_to_point(depth_intrin, depth_pixel, depth)
https://chowdera.com/2022/01/202201111240108303.html
Realsense d435i obtains the three-dimensional coordinates of a pixel (two methods: calculating depth and point cloud)
Realsense d435i obtains the three-dimensional coordinates of a pixel (two methods: calculating depth and point cloud) 2022-01-11 12:40:14 【Ice cream】 00 explain Code 1 Use aligned_depth_frame.get_distance() And rs.rs2_deproject_pixel_to_point() Get thr
chowdera.com
'Done > With Sensor, Board' 카테고리의 다른 글
[ESP32] HTTP POST 전송 & FAST API 서버 생성 (0) | 2024.03.19 |
---|---|
[6dof-pose estimation]DOPE-ROS-D435 DOCKER 파일 만들기 (0) | 2022.07.28 |
Yujin Lidar viewer settings (0) | 2022.03.23 |
Camera calibration (0) | 2022.02.24 |
Realsense depth 활용 (0) | 2022.02.17 |