[FEATURE] Add New Features for Madrona Batch Rendering#1563
Merged
duburcqa merged 51 commits intoGenesis-Embodied-AI:mainfrom Sep 4, 2025
Merged
[FEATURE] Add New Features for Madrona Batch Rendering#1563duburcqa merged 51 commits intoGenesis-Embodied-AI:mainfrom
duburcqa merged 51 commits intoGenesis-Embodied-AI:mainfrom
Conversation
Create tuples directly in BatchRender.render() Check input_types in Camera.set_pose() with set Update comments in batch_render.py and scene.py
duburcqa
reviewed
Aug 14, 2025
…into czh/seg_new1
yuhongyi
reviewed
Aug 22, 2025
duburcqa
reviewed
Aug 25, 2025
duburcqa
reviewed
Aug 25, 2025
…mal and segmentation maps.
duburcqa
approved these changes
Sep 3, 2025
winnieyangwannan
pushed a commit
to winnieyangwannan/Genesis
that referenced
this pull request
Sep 14, 2025
…ied-AI#1563) Co-authored-by: Alexis DUBURCQ <alexis.duburcq@gmail.com>
Kashu7100
pushed a commit
to Kashu7100/Genesis
that referenced
this pull request
Jan 26, 2026
…ied-AI#1563) Co-authored-by: Alexis DUBURCQ <alexis.duburcq@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
examples/rigid/single_franka_batch_render.py.Render
rgb/depth/normal/segmentationincamera.render()orscene.render_all_cameras()to control the image components you want to render.colorize_segto colorize the segmentation map.segmentation_level="geom"/"link"/"entity"ings.options.VisOptionsto control the segmentation level. (Now Pyrender also supports segmentation_level="geom").camera.render_pointclouds().ndarrayand depth/segmentation image has shape(..., H, W,)(instead of(..., H, W, 1)) for consistency with other renderers.Light
scene.add_light()to add point/directional lights for BatchRender. Originaladd_light()function (specific for Luisa Raytracer) is renamed toadd_mesh_light().colorfor colored lights.attenuationfor attenuation factor (based on squared distance) for pointed lights.Camera
nearandfarplane distance inscene.add_camera().Bug Fix
0.05in both rasterizer and raytracer modes. The brightness of images in the same light configuration should be the same.Code Base
SegmentationManagerhelper class for both Rasterizer and BatchRender.RigidSolverin gs-madrona, replaced withGeomRetrieverhelper class.FrameImageExporterings.utils.image_exporter.py. Now it accepts ndarray images.Resolves #1632
Resolves #1648