I'm trying to render a batch of images where each image is a scene. I have two meshes objects that I'd like to place in the same scene, but each object has a batch dimension. What's the best way to merge these?
In other words, I have two batches mesh objects and I'd like to merge them into a new batched mesh object with the same batch size.
join_meshes_as_scene seems to put everything into a single scene, which is not what I want
❓ Questions on how to use PyTorch3D
I'm trying to render a batch of images where each image is a scene. I have two meshes objects that I'd like to place in the same scene, but each object has a batch dimension. What's the best way to merge these?
In other words, I have two batches mesh objects and I'd like to merge them into a new batched mesh object with the same batch size.
join_meshes_as_scene
seems to put everything into a single scene, which is not what I wantThanks!