Page 1 of 1

Label Connected Components : keep unconnected points

Posted: Mon Mar 24, 2014 10:51 am
by ThomasRisto
Hello !

I've been using the Label Connected Components segmentation and I realised that once the segmentation is done, the points that were not clustered just disappeared.

I figured out a trick (merging clusters + distance with the original cloud + threshold) to get them back, but it should not be very difficult to have the algorithm save the remaining points in a last cluster...

That would be very useful if I want, for example, to perform another segmentation with other parameters on these points...

Thanks again for listening to the community !
Thomas

Re: Label Connected Components : keep unconnected points

Posted: Wed Mar 26, 2014 11:10 am
by daniel
If you don't want to lose any points you can simply set the 'Min points per component' to 0 (instead of 10 by default).

Then the components are sorted by size, so you can easily get the smallest (at the end) and merge them.

Re: Label Connected Components : keep unconnected points

Posted: Mon Apr 14, 2014 1:56 pm
by ThomasRisto
Thanks for the hint, I'll do that