facebookresearch / pytorch3d

PyTorch3D is FAIR's library of reusable components for deep learning with 3D data
https://pytorch3d.org/
Other
8.81k stars 1.32k forks source link

Does pytorch3d support polygonal-light rendering? #1693

Closed imxtx closed 11 months ago

imxtx commented 11 months ago

Does pytorch3d support polygonal-light rendering like this?

image

I want the light source to be a polygonal-light, is it possible?

bottler commented 11 months ago

This is not implemented in PyTorch3D, where the provided lights are point lights, directional lights and ambient lights. I don't know how hard this would be to implement for yourself.

imxtx commented 11 months ago

I see thank you.