要使用PaddleOCR檢測(cè)圖像文本,可以按照以下步驟操作:
pip install paddlepaddle
pip install paddleocr
from paddleocr import PaddleOCR, draw_ocr
ocr = PaddleOCR()
img_path = 'example.jpg'
result = ocr.ocr(img_path, cls=False)
image = draw_ocr(img_path, result)
image.show()
通過(guò)以上步驟,就可以使用PaddleOCR檢測(cè)圖像中的文本了。需要注意的是,PaddleOCR還提供了其他功能,如文本識(shí)別、文本方向檢測(cè)等,可以根據(jù)需要進(jìn)行調(diào)用。