mastodon-sc / mastodon

Mastodon – a large-scale tracking and track-editing framework for large, multi-view images.
BSD 2-Clause "Simplified" License
67 stars 20 forks source link

Search vertices by their label take 2. #122

Closed tinevez closed 2 years ago

tinevez commented 4 years ago

This PR adds a SearchVertexLabel action that is added to the BDV and TrackScheme views (last item on their settings panel). It shows up as a search field with a checkbox for options. Ctrl F, meta F, / move the focus to the search field.

Search starts from the selected vertex if there is exactly one. If not, it starts from the focused vertex. If no vertices are focused, it starts from the first one.

Search processes in breadth-first order, connected-component by cc. Iterated CCs are sorted by their label, as in TrackScheme.

This PR requires several changes:

Screenshot 2020-09-20 at 17 18 21 Screenshot 2020-09-20 at 17 18 55 Screenshot 2020-09-20 at 17 19 06

(This last image is taken from a merge with #105 )

Supersedes and replace #49