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

Force segmentation using a fast and smart voxel based approach #110

Open
BartBruininks opened this issue Jan 19, 2021 · 0 comments
Open
Assignees
Labels
enhancement New feature or request

Comments

@BartBruininks
Copy link
Collaborator

The current force segmentation show good results, however, it is implemented in a rather inefficient manner. The recursive nature is nice, but slow and new distance calculations are performed over and over again. It would be better to start with making a mask for all that is non-segmented and then perform the neighbor search and do the largest distance calculations first. Then we can subsample and update the segment IDs in an iterative manner. This would prevent recalculating the distances over and over again and would focus on updating segment ids and our current most dominant segment in the surrounding. Subsampling the max distance matrix with a shorter cutoff (already sorted in distance, so just array indexing). Something like that.

@BartBruininks BartBruininks self-assigned this Jan 19, 2021
@BartBruininks BartBruininks added the enhancement New feature or request label Jan 19, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant