Replies: 2 comments 5 replies
-
Beta Was this translation helpful? Give feedback.
2 replies
-
Does the depth image rendered by |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I used the branch support-batch-renderer together with gs-madrona to render rgba and depth images in batches. I observed that with the same camera settings, the depth returned by
is different from the depth returned by the rasterizer renderer (
self._rasterizer.render_camera()
) from the main branch.As a result, if I use a similar way to construct the point cloud from depth as in
camera.render_pointcloud()
, there will be an offset from the world frame. The further the camera is placed away from the center, the larger the offset is. Therefore, I am wondering if the depth returned by the MadronaBatchRenderer in rasterizer mode is calculated in a different way than that of the rasterizer renderer in the main branch, and should be treated differently when constructing point cloud?The offset looks like this:

This image contains 5 point clouds rendered by 5 different cameras. They are supposed to be shown as a single point cloud after fusion. My method for construct the piont cloud and fusion works fine for the depth returned by
self._rasterizer.render_camera()
.Beta Was this translation helpful? Give feedback.
All reactions