Spaces:
Sleeping
Sleeping
File size: 232 Bytes
494f169 |
1 2 3 4 5 6 7 |
def estimate_table_occupancy(people_count: int) -> bool:
"""
Minimal heuristic. Replace with your own table polygon checks if available.
Seated if there is at least 1 detected person.
"""
return people_count > 0
|