Relative Content

Tag Archive for batch-processingdetectionexecution-timepaddleocr

Batch processing using paddleocr

I am using the PaddleOCR library to detect and extract tables from images. Firstly, I am running the layout detection on an image, if the layout detector detects a table in the image, then I am sending the image to the PaddleOCR. However, it does not natively support batch processing due to which the execution time is scaling linearly with the number of images being processed.
The library processes one image at a time. Is there any way to process multiple images simultaneously at the gpu using paddleOCR so that the execution time does not scale linearly with the the number of images? Or are there any open source alternatives to PaddleOCR to accomplish the task?