From 725888734c8dfb3a2bd9462264348908f47107f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Ulman?= Date: Mon, 18 Jul 2022 22:03:18 +0200 Subject: [PATCH] additional cosmetics on the FilterOutSolists plugin --- .../mamut/tomancak/spots/FilterOutSolists.java | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/mastodon/mamut/tomancak/spots/FilterOutSolists.java b/src/main/java/org/mastodon/mamut/tomancak/spots/FilterOutSolists.java index bcce2b96..5d6ab282 100644 --- a/src/main/java/org/mastodon/mamut/tomancak/spots/FilterOutSolists.java +++ b/src/main/java/org/mastodon/mamut/tomancak/spots/FilterOutSolists.java @@ -45,12 +45,16 @@ public class FilterOutSolists implements Command { @Parameter(visibility = ItemVisibility.MESSAGE, persist = false, required = false) - final String hintMsg = "Solist has no ancestors and no descendants, plus the conditions below:"; + final String hintMsg = "A spot-solist has no ancestors and no descendants, plus the optional conditions below:"; - @Parameter + @Parameter(label = "And the spot must appear in the last time point:", + description = "Lonely spots at the end of the video are much harder" + + "to find compared to lonely spots at the beginning.") private boolean isInTheLastTimePoint = true; - @Parameter + @Parameter(label = "And the spot's label consists of numbers only:", + description = "A label that is not a number only suggests that" + + "user has curated this spot.") private boolean hasLabelMadeOfNumbersOnly = true; @Parameter(persist = false)