Skip to content

Commit

Permalink
renamed label options. Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
jellydreams committed Dec 11, 2024
1 parent 3fb3719 commit f1ab8c2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```


Expand Down
4 changes: 2 additions & 2 deletions plugin/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f1ab8c2

Please sign in to comment.