Documentation ¶
Index ¶
Constants ¶
View Source
const ( TABLE_PREFIX = "alpr" // alpr_plates alpr_plate_images alpr_car_images alpr_properties CREATE_TABLE_TEMPLATE = "CREATE TABLE %s (%s)" SELECT_TABLE_QUERY = "SELECT sql FROM sqlite_master WHERE type='table' AND name=?" )
Variables ¶
View Source
var Tables = map[string]string{
"plates": "id text PRIMARY KEY, start timestamp, end timestamp, camera_id int, plate string, confidence float, direction float, is_parked integer",
"plate_images": "id text PRIMARY KEY, image blob",
"vehicle_images": "id text PRIMARY KEY, image blob",
"properties": "id text, key text, value text, confidence float",
}
Functions ¶
This section is empty.
Types ¶
type TablePlateImages ¶
type TablePlates ¶
type TableProperties ¶
type TableVehicleImages ¶
Click to show internal directories.
Click to hide internal directories.