Conversation
|
The paper uses a 2-level Spherical Harmonic representation for color. This means that each color channel (red, green, and blue) is represented by 9 parameters, for a total of 27 parameters to represent an RGB color, 1 parameter for SDF One critical issue I encountered is that the total number of parameters per grid is 28, while the current repository only supports a maximum dimension (dim) of 16. I'm wondering if it would be possible to increase the supported dimension from 16 to 32 in order to accommodate the 28 parameters needed for the Spherical Harmonic color representation. |
|
Thanks for the contribution! |
|
Currently, I store color-related parameters in the embedding dimension, but there's a maximum limit to this. |
|
My bad, I think you can simply uncomment this line: https://github.com/theNded/torch-ash/blob/master/ash/grid.py#L76. I checked the low-level implementation and found no such limitations. Don't remember why I put this constraint... |

@theNded Hi, I am trying to implement Plenoxels: Radiance Fields without Neural Networks, which could significantly improve Image quality by Rendering and extend the application of this repo to Novel View Synthesis without adding MLP.