yifanlu0227 / ChatSim

[CVPR2024 Highlight] Editable Scene Simulation for Autonomous Driving via LLM-Agent Collaboration
https://yifanlu0227.github.io/ChatSim
266 stars 13 forks source link

how render in multi-view image not in a wide-angle image? #35

Closed utc1205 closed 1 week ago

utc1205 commented 1 week ago

Hi, I would like to thank for your great work. Recently I run the test script that renders cars in wide-angle image, we try to generate simulation data. how render multi-view images like input images? Thank you in advance!

vfishc commented 1 week ago

Different rendering view depends on the intrinsics and extrinsics for rendering. You can change the intrinsics and extrinsics as the parameters you need for rendering. For instance, if you do not want wide-angle, which means the intrinsics should be changed as the original version, you can change it by modifying the code in chatsim/scene.py or set the is_wide_angle parameter in config as false. If you want to get the multi-view images, you should change the extrinsics during rendering process, unfortunately we do not offer direct api or config for it, but you can change the scene.current_extrinsics in chatsim/scene.py as other views by modifying the code. scene.nerf_motion_extrinsics is the loaded processed extrinsics, and be arranged as front_time0, frontleft_time0, frontright_time0, front_time1...... You can read the scene.nerf_motion_extrinsics to get the extrinsics to meet your requirement.

utc1205 commented 1 week ago

thanks again !