mirror of
https://github.com/ganeshsar/UnityPythonMediaPipeBodyPose.git
synced 2025-07-07 11:36:27 +08:00
14 lines
441 B
Python
14 lines
441 B
Python
# Internally used, don't mind this.
|
|
KILL_THREADS = False
|
|
|
|
# Toggle this in order to view how your WebCam is being interpreted (reduces performance).
|
|
DEBUG = True
|
|
|
|
# Settings do not universally apply, not all WebCams support all frame rates and resolutions
|
|
USE_CUSTOM_CAM_SETTINGS = False
|
|
FPS = 60
|
|
WIDTH = 320
|
|
HEIGHT = 240
|
|
|
|
# [0, 2] Higher numbers are more precise, but also cost more performance. The demo video used 1.
|
|
MODEL_COMPLEXITY = 1 |