Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions src/mouse_tracking/core/config/pose_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,30 @@ class PoseUtilsConfig(BaseSettings):
MIN_GAIT_CONFIDENCE: float = 0.3
MIN_JABS_CONFIDENCE: float = 0.3
MIN_JABS_KEYPOINTS: int = 3

# Colors
MOUSE_COLORS: list[tuple[int, int, int]] = [
(228, 26, 28), # Red
(152, 78, 163), # Purple
(255, 255, 51), # Yellow
(166, 86, 40), # Brown
(247, 129, 191), # Pink
(166, 206, 227), # Light Blue
(178, 223, 138), # Light Green
(251, 154, 153), # Peach
(253, 191, 111), # Light Orange
(202, 178, 214), # Light Purple
(255, 255, 153), # Faded Yellow
]

# Static object settings
STATIC_OBJ_XY: dict[str, bool] = {
"lixit": False,
"food_hopper": False,
"corners": True,
}
STATIC_OBJ_COLORS: dict[str, tuple[int, int, int]] = {
"lixit": (55, 126, 184), # Water spout is Blue
"food_hopper": (255, 127, 0), # Food hopper is Orange
"corners": (75, 175, 74), # Arena corners are Green
}
Loading