Views
No views yet
IC15 in the filename means the model is trained on IC15 dataset, which can detect English text instances only.TD500 in the filename means the model is trained on TD500 dataset, which can detect both English & Chinese instances.text_detection_xx_ppocrv3_2023may_int8bq.onnx represents the block-quantized version in int8 precision and is generated using block_quantize.py with block_size=64.1# detect on camera input
2python demo.py
3# detect on an image
4python demo.py --input /path/to/image -v
5
6# get help regarding various parameters
7python demo.py --help1# A typical and default installation path of OpenCV is /usr/local
2cmake -B build -D OPENCV_INSTALLATION_PATH=/path/to/opencv/installation .
3cmake --build build
4# detect on camera input
5./build/opencv_zoo_text_detection_ppocr -m=/path/to/model
6# detect on an image
7./build/opencv_zoo_text_detection_ppocr -m=/path/to/model -i=/path/to/image -v
8# get help messages
9./build/opencv_zoo_text_detection_ppocr -h
