This is actually a question, not an issue, but I would appreciate any help or hint.
Can I somehow force the point cloud to be loaded to maximum detail (i.e. to the deepest octree level) inside a certain section, regardless of how much area it takes on the screen?
More specifically - I want to copy all of the points inside a given 3d box at runtime. I have successfully done that by:
running through all the children of Point Cloud Set GO to check if their bounding boxes overlap with my box, and if yes
running through all the vertices to check if they lie inside of my box, and if yes
copy vertex and colour to create a final product.
This works great, however, I cannot be sure if all of the points inside of that box are actually loaded and visualised - there may be more points deeper in the octree, but it is important to me to load them all. Thanks in advance!
First of all, great work and thank you very much.
This is actually a question, not an issue, but I would appreciate any help or hint.
Can I somehow force the point cloud to be loaded to maximum detail (i.e. to the deepest octree level) inside a certain section, regardless of how much area it takes on the screen?
More specifically - I want to copy all of the points inside a given 3d box at runtime. I have successfully done that by:
This works great, however, I cannot be sure if all of the points inside of that box are actually loaded and visualised - there may be more points deeper in the octree, but it is important to me to load them all. Thanks in advance!