SizheAn / PanoHead

Code Repository for CVPR 2023 Paper "PanoHead: Geometry-Aware 3D Full-Head Synthesis in 360 degree"

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

tri-grid projection

oneThousand1000 opened this issue · comments

Hello, thank you for sharing your interesting work!

The authors of EG3D mentioned that their triplane projection is actually a bi-plane projection (XY, XZ, ZX) (see NVlabs/eg3d#67). After examining your code, it seems that this issue is still present. I'm wondering if you have considered the potential problems that may arise from this projection method in the proposed tri-grid?

I look forward to your kind reply!

We already considered and fixed it:

https://github.com/SizheAn/PanoHead/blob/main/training/volumetric_rendering/renderer.py#L15-L29

The tri-plane projection here is XY, XZ, YZ, whereas in your link the fix Eric provided is XY, XZ, ZY. They are essentially the same.

Thanks!