mirror of https://github.com/open-mmlab/mmocr.git
1.8 KiB
1.8 KiB
Text Detection Demo

Text Detection Image Demo
We provide a demo script to test a single image for text detection with a single GPU.
Text Detection Model Preparation: The pre-trained text detection model can be downloaded from model zoo. Take PANet as an example:
python demo/image_demo.py ${TEST_IMG} ${CONFIG_FILE} ${CHECKPOINT_FILE} ${SAVE_PATH} [--imshow] [--device ${GPU_ID}]
Example:
python demo/image_demo.py demo/demo_text_det.jpg configs/textdet/panet/panet_r18_fpem_ffm_600e_icdar2015.py https://download.openmmlab.com/mmocr/textdet/panet/panet_r18_fpem_ffm_sbn_600e_icdar2015_20210219-42dbe46a.pth demo/demo_text_det_pred.jpg
The predicted result will be saved as demo/demo_text_det_pred.jpg
.
Text Detection Webcam Demo
We also provide live demos from a webcam as in mmdetection.
python demo/webcam_demo.py \
${CONFIG_FILE} \
${CHECKPOINT_FILE} \
[--device ${GPU_ID}] \
[--camera-id ${CAMERA-ID}] \
[--score-thr ${SCORE_THR}]
Examples:
python demo/webcam_demo.py \
configs/textdet/panet/panet_r18_fpem_ffm_600e_icdar2015.py \ https://download.openmmlab.com/mmocr/textdet/panet/panet_r18_fpem_ffm_sbn_600e_icdar2015_20210219-42dbe46a.pth
Remarks
- If
--imshow
is specified, the demo will also show the image with OpenCV. - The
image_demo.py
script only supports GPU and so the--device
parameter cannot take cpu as an argument.