alpr-unconstrained icon indicating copy to clipboard operation
alpr-unconstrained copied to clipboard

License Plate Recognition in EVA multimedia database system

Open jarulraj opened this issue 2 years ago • 0 comments

Hello @sergiomsilva. Thanks for creating and sharing this useful application. Can you please share your thoughts on integrating this application with a Python-based multimedia database system like EVA?

Do you anticipate any use-cases for a query language over the extracted labels?

https://github.com/georgia-tech-db/license-plate-recognition/blob/main/README.ipynb https://github.com/georgia-tech-db/eva

CREATE UDF IF NOT EXISTS OCRExtractor
INPUT (frame NDARRAY UINT8(3, ANYDIM, ANYDIM)) OUTPUT (labels NDARRAY STR(ANYDIM), bboxes NDARRAY FLOAT32(ANYDIM, 4), scores NDARRAY FLOAT32(ANYDIM)) TYPE TextExtraction IMPL 'ocr_extractor.py';

SELECT OCRExtractor(data) FROM MyImages WHERE ocrextractor.label LIKE "LEM446A4"

README_12_7

jarulraj avatar Jan 07 '23 17:01 jarulraj