Views
No views yet
maianh511/PortVehicleOCR dataset — a collection of port vehicle images (license plates/containers) — to improve text detection performance on real-world images from this domain.maianh511/PortVehicleOCR — port vehicle images with text region annotations (license plates, container codes, etc.).1from paddleocr import TextDetection
2
3model = TextDetection(model_name="PP_OCRv4_mobile_det_finetune_PortVehicleOCR")
4output = model.predict(input="your_image.jpg", batch_size=1)
5
6for res in output:
7 res.print()
8 res.save_to_img(save_path="./output/")Evaluation results (precision/recall/hmean) will be added once benchmarking on the test set is complete.