├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake └── FindTensorRT.cmake ├── include ├── Convert.h ├── args.h ├── clipper.cpp ├── clipper.h ├── cls.h ├── det.h ├── logging.h ├── ocr.h ├── postprocess_op.h ├── preprocess_op.h ├── rec.h └── utility.h ├── main.cpp ├── myModels ├── DBNet_det.onnx ├── ch_rec_v2.onnx ├── ch_rec_v3.onnx ├── det.onnx ├── dict_txt │ ├── EN_symbol_dict.txt │ ├── dict90.txt │ ├── en_dict.txt │ ├── ic15_dict.txt │ └── ppocr_keys_v1.txt └── en_rec_v2.onnx ├── src ├── Convert.cpp ├── args.cpp ├── cls.cpp ├── det.cpp ├── ocr.cpp ├── postprocess_op.cpp ├── preprocess_op.cpp ├── rec.cpp └── utility.cpp └── testImgs ├── 00006737.jpg ├── 00009282.jpg ├── 1.jpg ├── 11.jpg └── 12.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/README.md -------------------------------------------------------------------------------- /cmake/FindTensorRT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/cmake/FindTensorRT.cmake -------------------------------------------------------------------------------- /include/Convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/include/Convert.h -------------------------------------------------------------------------------- /include/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/include/args.h -------------------------------------------------------------------------------- /include/clipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/include/clipper.cpp -------------------------------------------------------------------------------- /include/clipper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/include/clipper.h -------------------------------------------------------------------------------- /include/cls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/include/cls.h -------------------------------------------------------------------------------- /include/det.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/include/det.h -------------------------------------------------------------------------------- /include/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/include/logging.h -------------------------------------------------------------------------------- /include/ocr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/include/ocr.h -------------------------------------------------------------------------------- /include/postprocess_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/include/postprocess_op.h -------------------------------------------------------------------------------- /include/preprocess_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/include/preprocess_op.h -------------------------------------------------------------------------------- /include/rec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/include/rec.h -------------------------------------------------------------------------------- /include/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/include/utility.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/main.cpp -------------------------------------------------------------------------------- /myModels/DBNet_det.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/myModels/DBNet_det.onnx -------------------------------------------------------------------------------- /myModels/ch_rec_v2.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/myModels/ch_rec_v2.onnx -------------------------------------------------------------------------------- /myModels/ch_rec_v3.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/myModels/ch_rec_v3.onnx -------------------------------------------------------------------------------- /myModels/det.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/myModels/det.onnx -------------------------------------------------------------------------------- /myModels/dict_txt/EN_symbol_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/myModels/dict_txt/EN_symbol_dict.txt -------------------------------------------------------------------------------- /myModels/dict_txt/dict90.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/myModels/dict_txt/dict90.txt -------------------------------------------------------------------------------- /myModels/dict_txt/en_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/myModels/dict_txt/en_dict.txt -------------------------------------------------------------------------------- /myModels/dict_txt/ic15_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/myModels/dict_txt/ic15_dict.txt -------------------------------------------------------------------------------- /myModels/dict_txt/ppocr_keys_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/myModels/dict_txt/ppocr_keys_v1.txt -------------------------------------------------------------------------------- /myModels/en_rec_v2.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/myModels/en_rec_v2.onnx -------------------------------------------------------------------------------- /src/Convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/src/Convert.cpp -------------------------------------------------------------------------------- /src/args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/src/args.cpp -------------------------------------------------------------------------------- /src/cls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/src/cls.cpp -------------------------------------------------------------------------------- /src/det.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/src/det.cpp -------------------------------------------------------------------------------- /src/ocr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/src/ocr.cpp -------------------------------------------------------------------------------- /src/postprocess_op.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/src/postprocess_op.cpp -------------------------------------------------------------------------------- /src/preprocess_op.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/src/preprocess_op.cpp -------------------------------------------------------------------------------- /src/rec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/src/rec.cpp -------------------------------------------------------------------------------- /src/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/src/utility.cpp -------------------------------------------------------------------------------- /testImgs/00006737.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/testImgs/00006737.jpg -------------------------------------------------------------------------------- /testImgs/00009282.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/testImgs/00009282.jpg -------------------------------------------------------------------------------- /testImgs/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/testImgs/1.jpg -------------------------------------------------------------------------------- /testImgs/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/testImgs/11.jpg -------------------------------------------------------------------------------- /testImgs/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fzhiheng/paddleOCR_cpp_tensorrt/HEAD/testImgs/12.jpg --------------------------------------------------------------------------------