Skip to content
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

Point clouds size #34

Open
danlapko opened this issue Feb 14, 2023 · 2 comments
Open

Point clouds size #34

danlapko opened this issue Feb 14, 2023 · 2 comments

Comments

@danlapko
Copy link

Hengshuang et al mention in their work "we apply selfattention locally, which enables scalability to large scenes with millions of points". But this implementation could be hardly trained for num_point>8k (nvidia rtx 3090).
Any suggestions on how to train/apply this implementation for large point clouds?

@qq456cvb
Copy link
Owner

You may borrow some ideas from PointNet++, which splits the whole area into a set of chunks, e.g., 1m x 1m x 1m. Then within each chunk, use the PointTransformer to predict the label for each point. You may find more details about this in the code provided by PointNet++ (https://github.com/charlesq34/pointnet2/blob/master/scannet/scannet_dataset.py).

@danlapko
Copy link
Author

danlapko commented May 5, 2023

Got it, thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants