Process Killed at generateEllipsoids - KDTree stage during raycombine min (416M points) #41
-
|
Hello, But the Problem is even when using the min flag and a 10 rays threshold, the process is terminated (Killed) by the OS/Docker during the KDTree construction phase. This is what I found: My PC Configuration:
My Quaries:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
|
Hi there,
I don't think these issues will have anything to do with Docker. The algorithm is less sensitive to sparse data than other QSM methods, I would recommend reading this paper to understand how the branch segment fitting works, and also the limitations of the DBH metric from treetools - Devereux, T., Lowe, T., Rivory, J., Reckziegel, R. B., Calders, K., Aryal, R. R., Eaton, G., Cooper, Z., Levick, S., Phinn, S., & Woodgate, W. (2026). RayExtract: A fast, scalable method for tree volume reconstruction from terrestrial laser scanning. Remote Sensing of Environment, 334, 115162. https://doi.org/10.1016/j.rse.2025.115162 |
Beta Was this translation helpful? Give feedback.
-
|
There are two ways you could proceed:
When you come to rayextract trees note that results are barely better for less than about 5 cm between points. |
Beta Was this translation helpful? Give feedback.
Hi there,
No this will not effect DBH results, you'll end up with more points by using raycombine all. It's worth noting that the DBH metric is taken from the tree models, not directly from the point data. It underestimates DBH on trees with tapered stems.
Likely a bug in raycombine min.
Given that you have a decent machine, I would be combining all scan positions with raycombine all, then decimate the merged raycloud to 2cm with raydecimate.
I don't think these issues will have anything to do with Docker.
The algorithm is less sensitive to sparse data than other QSM methods, I would recommend reading this paper to understand how the branch segment fitting works, and also the limi…