tracking_system_backend / contracts /camera_metadata.py
e1250's picture
most of the functions are tested and ready, still just fixes and connect them together
e19b795
Raw
History Blame
164 Bytes
from typing import List
from pydantic import BaseModel
class CameraMetadata(BaseModel):
camera_id: str
is_danger: bool = False
depth_points: List = []