From 409f8c51972adbef98ea8da4c860aa030e6f8287 Mon Sep 17 00:00:00 2001 From: kallaballa Date: Tue, 6 Dec 2022 15:47:55 +0100 Subject: [PATCH] improve tooltips --- src/optflow/optflow-demo.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/optflow/optflow-demo.cpp b/src/optflow/optflow-demo.cpp index 58ba49582..a4631e771 100644 --- a/src/optflow/optflow-demo.cpp +++ b/src/optflow/optflow-demo.cpp @@ -190,8 +190,8 @@ void setup_gui() { make_gui_variable("Loss", FG_LOSS, 0.1f, 99.9f, true, "%", "On every frame the foreground loses on brightness"); form->add_group("Scene Change Detection"); - make_gui_variable("Threshold", SCENE_CHANGE_THRESH, 0.1f, 1.0f, true, "", "Peak threshold. Lowering them makes detection more sensitive"); - make_gui_variable("Threshold Diff", SCENE_CHANGE_THRESH_DIFF, 0.1f, 1.0f, true, "", "Difference of peak thresholds. Lowering them makes detection more sensitive"); + make_gui_variable("Threshold", SCENE_CHANGE_THRESH, 0.1f, 1.0f, true, "", "Peak threshold. Lowering it makes detection more sensitive"); + make_gui_variable("Threshold Diff", SCENE_CHANGE_THRESH_DIFF, 0.1f, 1.0f, true, "", "Difference of peak thresholds. Lowering it makes detection more sensitive"); form->add_group("Points"); make_gui_variable("Max. Points", MAX_POINTS, 10, 1000000, true, "", "The theoretical maximum number of points to track which is scaled by the density of detected points and therefor is usually much smaller");