-
Notifications
You must be signed in to change notification settings - Fork 87
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
Visualizing result from stage 2 #54
Comments
Hi, I want to know how to save the output as .pkl file, I only has the .pth file. |
you could change the extension from .pth to .pkl, there is no big difference, only different ways when saving data. |
ps: change the extension in the code. |
Hi, thanks for you rapid reply
|
OK,i change the |
For whom might also be interested in:
If you have the same question as I regarding visualization method, here is my solution.
First, run the eval script and make sure to save the output as .pkl file.
Then, load this .pkl file(needs big memory), and you can see that the data is in the shape of 815 x (1x256x256x32).
Next, do not hesitate to split the data into 815 pieces, each of which is 1 x 256 x 256 x 32. Save each piece with the name 000000.label ~ xxxxxx.label (6 digits).
And then, install semantic-kitti-api.
Prepare kitti dataset, save the corresponding data as semantic-kitti-api asks you to do, and copy your just created label in the same path, just ignore the label from the official kitti dataset.
Finally, use the command copied from "Voxel Grids for Semantic Scene Completion" , and you will get your result.
The text was updated successfully, but these errors were encountered: