Spaces:
Sleeping
Sleeping
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 | |