-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question of viewer #6
Comments
Hi Sun-Jing-Kang, HAC follows the base structure of Scaffol-GS, but there some minor modifications in the 3D model, which leads to the failure of viewing using the Scaffold-GS-viewer. You can have a read on how we decode the model and render the testing images using the decoded model, and modify the Scaffold-GS-viewer or our HAC model to fit each other. We will consider to directly support the Scaffold-GS-viewer in the future. :) |
Does this HAC project support real time rendering? |
Yes. HAC essentially renders images under the 3DGS pipeline, thus is able to achieve real-time rendering. Please refer to the paragraph Inference time in our paper. |
Cool. If I am understanding you correctly, these bitstreams can be rendered by any rasterization method that is faithful the to the 3DGS rasterization implementation? Meaning SIBR or something similar to it can be used to render the output bitstreams from HAC? Edit: I read the code, and I see here: and here:
that before gaussian rasterization can occur, you need to call |
Hi, the bitstreams are not directly used for rendering though. Bitstreams are used to decode the 3DGS model (more precisely, Scaffold-GS model in our method), ie, the locations and the attributes. Note this decoding process only need to be run once to obtain the 3DGS model before the rendering process. After the model is decoded and obtained, the rendering process (ie, the rasterization process) is totally the same to the Scaffold-GS, which is real-time. |
Oh, very nice! I did not realize that. I'm excited to try this out :) |
Is there a real-time viewing tool available now? Similar to SIBR in 3DGS |
You could use the real-time viewing tool of Scaffold-GS since we build the HAC framework based on Scaffold-GS. There are some minimal differences though, please remember to change the attribute scale to the version before activation in the decoded weights. (You could refer to the variable name decoded_version in our code to find these differences.) |
How to view the trained model? Thanks!
I found the Scaffold-GS-viewer can't be used, the origin GS-viewer view like full black scene.
The text was updated successfully, but these errors were encountered: