From f1ab8c2a4216859d2293bcb679545c4d8eab7208 Mon Sep 17 00:00:00 2001 From: JellyDreams Date: Wed, 11 Dec 2024 21:47:55 +0100 Subject: [PATCH] renamed label options. Fix typo. --- CONTRIBUTING.md | 2 +- plugin/ui.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 814f08a..cf8584c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -27,7 +27,7 @@ python app.py ### Build executable ```shell - pyinstaller ./app.py -n VTS_Fullbody_Tracking-0.1.10 --add-data='models/*:models' --add-data="venv/Lib/site-packages/mediapipe/modules/pose_landmark/*:mediapipe/modules/pose_landmark" --add-data="venv/Lib/site-packages/mediapipe/modules/pose_detection/*:mediapipe/modules/pose_detection" --add-data='*.png:.' -F -w' + pyinstaller ./app.py -n VTS_Fullbody_Tracking-0.1.10 --add-data='models/*:models' --add-data="venv/Lib/site-packages/mediapipe/modules/pose_landmark/*:mediapipe/modules/pose_landmark" --add-data="venv/Lib/site-packages/mediapipe/modules/pose_detection/*:mediapipe/modules/pose_detection" --add-data='*.png:.' -F -w ``` diff --git a/plugin/ui.py b/plugin/ui.py index 4c85b62..a85632e 100644 --- a/plugin/ui.py +++ b/plugin/ui.py @@ -228,14 +228,14 @@ def toggle_inputs_tracking_mode(): live_stream_row.pack(anchor="w", pady=5) mode_live_stream_radio = tk.Radiobutton(live_stream_row, variable=selected_tracking_mode, value=LIVE_STREAM, command=toggle_inputs_tracking_mode, bg=BACKGROUND_COLOR) mode_live_stream_radio.pack(side="left", padx=5) - mode_live_stream_label = tk.Label(live_stream_row, text="Smooth and Slow", bg=BACKGROUND_COLOR, fg=TEXT_COLOR, anchor="w") + mode_live_stream_label = tk.Label(live_stream_row, text="Smooth (Slower)", bg=BACKGROUND_COLOR, fg=TEXT_COLOR, anchor="w") mode_live_stream_label.pack(side="left", padx=5) image_row = tk.Frame(tracking_mode_frame, bg=BACKGROUND_COLOR) image_row.pack(anchor="w", pady=5) mode_image_radio = tk.Radiobutton(image_row, variable=selected_tracking_mode, value=IMAGE, command=toggle_inputs_tracking_mode, bg=BACKGROUND_COLOR) mode_image_radio.pack(side="left", padx=5) - mode_image_label = tk.Label(image_row, text="Fast and Shaky", bg=BACKGROUND_COLOR, fg=TEXT_COLOR, anchor="w") + mode_image_label = tk.Label(image_row, text="Fast (Less Stable)", bg=BACKGROUND_COLOR, fg=TEXT_COLOR, anchor="w") mode_image_label.pack(side="left", padx=5) # -- Start Tracking Button