Rayextract trees QSM branching off too early #38
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
Hi Ruben, I think there is a bit of a model limitation also. You hedge has a fairly thick stem right to the top because it has been cut. This breaks the similarity approximation which sets branch radius in proportion to branch length at each bifurcation. So it "wants" your stem to be getting smaller than it is. Radius estimation is the biggest difficulty in tree reconstruction, so it needs to make some approximations unfortunately. |
Beta Was this translation helpful? Give feedback.



Hi Ruben,
it looks like the stem is splitting too early.
As the algorithm traces up through the stem points it clusters the points based on a gap width, so if there is a big gap between points on the stem it will think it has become two branches.
The gap width is specified as a ratio relative to the branch length to tip, and is an internal constant that defaults to 0.016. You can change it with the -g (--gap_ratio) parameter. I'd try doubling it and see if it helps.
You could also try upping the span ratio (--span_ratio) from 4.5, which makes it less inclined to split, but probably won't do much.
I think there is a bit of a model limitation also. You hedge has a fairly thick stem right to…