cctvbackend / table_occupancy.py
yougandar's picture
Update table_occupancy.py
494f169 verified
raw
history blame contribute delete
232 Bytes
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