- Object detection using the
facebook/detr-resnet-101
model courtesy of Hugging Face - Thin Plate Spline transformation to correct for camera perspective
- First class geospatial data via postGIS
ALTER TABLE detections
ADD COLUMN location geography(Point, 4326) GENERATED ALWAYS AS (ST_SetSRID(ST_MakePoint(longitude, latitude), 4326)) STORED;
ALTER TABLE locations
ADD COLUMN location geography(Point, 4326) GENERATED ALWAYS AS (ST_SetSRID(ST_MakePoint(longitude, latitude), 4326)) STORED;