問題タブ [paddle-paddle]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
python - Anaconda を使用して Python でモジュール paddleocr を呼び出す際の問題
おはようございます、私は paddleOCR ( https://github.com/PaddlePaddle/PaddleOCR ) を anaconda でインストールしようとしていましたが、cmd のコマンドラインで起動しようとしましたが、正常に動作しました:
しかし、コードでそれをやろうとすると:
パドルのライブラリがインストールされていない場合のような次のエラーが表示されますが、インストールされています。したがって、どちらがエラーであるかは推測していません。
両方の実行で、同じ環境を使用しています。
ご協力ありがとうございました。
python - TypeError の取得: 'TextDetector' オブジェクトは呼び出し可能ではありません
私の TextDetector オブジェクトはクラスの設計図ですが、まだ呼び出すことができません。以前は機能していましたが、現在は機能していません。なぜそれが起こったのかわからない。この TypeError の理由を教えてください。
インポートpredict_det
#from predict_det インポート TextDetector
インポート cv2
#輸入トーチ
#device = torch.device('cuda:0')
</p>
text_detector = predict_det.TextDetector()
img = cv2.imread(r'C:\Users\pearl\Downloads\AI\Project OCR\OCR_PP_tester\Temp_img_folder\images.jpg')
dt_boxes、elapse = text_detector(img)
<クラス「リスト」>
TypeError トレースバック (最新の呼び出しが最後) ~\AppData\Local\Temp/ipykernel_3160/1748103168.py in 7 text_detector = predict_det.TextDetector() 8 img = cv2.imread(r'C:\Users\pearl\Downloads\AI\プロジェクト OCR\OCR_PP_tester\Temp_img_folder\images.jpg') ----> 9 dt_boxes, elapse = text_detector(img)
TypeError: 'TextDetector' オブジェクトは呼び出し可能ではありません