JamesPerlman / TurboNeRF

A render engine for NeRFs!
MIT License
312 stars 16 forks source link

Provide cmd line options to specify input data path and output folder #8

Closed MrNeRF closed 1 year ago

MrNeRF commented 1 year ago

Here we are with the implementation. Your defaults should work. Anybody else can specify with -i the path to the training data json and with -o an ouput folder for the rendered images.

MrNeRF commented 1 year ago

I didn't want to introduce any dependencies so this is very lightweight implementation with the bare minimum. I basically run it with: ./NeRFRenderCore -i /home/user/Downloads/Lego/transforms.json -o /home/user/output/

JamesPerlman commented 1 year ago

Awesome! Thank you!