pytorch3d icon indicating copy to clipboard operation
pytorch3d copied to clipboard

I have got the coordinates of the model in the pixel plane. How can I use pytorch3d for raster rendering without setting the camera?

Open Luh1124 opened this issue 3 years ago • 1 comments

❓ Questions on how to use PyTorch3D

NOTE: Please look at the existing list of Issues tagged with the label 'question](https://github.com/facebookresearch/pytorch3d/issues?q=label%3Aquestion) or ['how-to. Only open a new issue if you cannot find an answer there.

Luh1124 avatar Aug 31 '22 12:08 Luh1124

A camera needs to be specified for any of PyTorch3D renderers. If screen space is the same as world space then it may be that the relevant camera is an orthogonal camera which does nothing.

When you say "faster rendering", do you mean faster because the camera transformation can be omitted? A very small proportion of the time spent in rendering is the camera transformation, so you shouldn't expect much of a speedup from omitting that step.

If you mean faster for some other reason, then we need more information.

bottler avatar Aug 31 '22 13:08 bottler