├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── PaddleOCR-OpenVINO-CSharp.sln ├── README.md ├── dict ├── arabic_dict.txt ├── chinese_cht_dict.txt ├── cyrillic_dict.txt ├── devanagari_dict.txt ├── en_dict.txt ├── japan_dict.txt ├── ka_dict.txt ├── korean_dict.txt ├── latin_dict.txt ├── layout_cdla_dict.txt ├── ppocr_keys_v1.txt ├── ta_dict.txt ├── table_structure_dict.txt ├── table_structure_dict_ch.txt └── te_dict.txt ├── image ├── demo_1.jpg ├── demo_10.jpg ├── demo_11.jpg ├── demo_12.jpg ├── demo_13.jpg ├── demo_14.jpg ├── demo_15.jpg ├── demo_2.jpg ├── demo_3.jpg ├── demo_4.jpg ├── demo_5.jpg ├── demo_6.jpg ├── demo_7.jpg ├── demo_8.jpg └── demo_9.png ├── model ├── ocr_model_download.sh ├── stru_model_download.sh └── 模型下载方式.txt ├── nuget └── logo.png ├── sample ├── OcrConsole │ ├── OcrConsole.csproj │ ├── Program.cs │ └── Properties │ │ └── launchSettings.json ├── OcrConsole4.8 │ ├── App.config │ ├── OcrConsole4.8.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── OcrConsoleNet3.1 │ ├── OcrConsoleNet3.1.csproj │ └── Program.cs ├── OcrConsoleNet5.0 │ ├── OcrConsoleNet5.0.csproj │ └── Program.cs ├── OcrConsoleNet6.0 │ ├── OcrConsoleNet6.0.csproj │ └── Program.cs ├── OcrConsoleNet8.0 │ ├── OcrConsoleNet8.0.csproj │ └── Program.cs └── OcrConsoleNet9.0 │ ├── OcrConsoleNet9.0.csproj │ └── Program.cs ├── src └── paddleocr │ ├── download │ ├── dict_download.cs │ ├── model_download.cs │ └── ocr_model.cs │ ├── paddleocr.csproj │ ├── paddleocr │ ├── ocr_cls.cs │ ├── ocr_det.cs │ ├── ocr_rec.cs │ ├── paddle_ocr.cs │ ├── paddle_structure.cs │ ├── paddleocr_utility.cs │ ├── post_processor.cs │ ├── predictor.cs │ ├── preprocess.cs │ ├── runtime_option.cs │ ├── structure_layout.cs │ └── structure_table.cs │ └── pipeline.cs └── test ├── test_ocr ├── Program.cs └── test_ocr.csproj ├── test_online_model ├── Program.cs └── test_online_model.csproj └── test_struct ├── Program.cs └── test_struct.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PaddleOCR-OpenVINO-CSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/PaddleOCR-OpenVINO-CSharp.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/README.md -------------------------------------------------------------------------------- /dict/arabic_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/dict/arabic_dict.txt -------------------------------------------------------------------------------- /dict/chinese_cht_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/dict/chinese_cht_dict.txt -------------------------------------------------------------------------------- /dict/cyrillic_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/dict/cyrillic_dict.txt -------------------------------------------------------------------------------- /dict/devanagari_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/dict/devanagari_dict.txt -------------------------------------------------------------------------------- /dict/en_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/dict/en_dict.txt -------------------------------------------------------------------------------- /dict/japan_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/dict/japan_dict.txt -------------------------------------------------------------------------------- /dict/ka_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/dict/ka_dict.txt -------------------------------------------------------------------------------- /dict/korean_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/dict/korean_dict.txt -------------------------------------------------------------------------------- /dict/latin_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/dict/latin_dict.txt -------------------------------------------------------------------------------- /dict/layout_cdla_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/dict/layout_cdla_dict.txt -------------------------------------------------------------------------------- /dict/ppocr_keys_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/dict/ppocr_keys_v1.txt -------------------------------------------------------------------------------- /dict/ta_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/dict/ta_dict.txt -------------------------------------------------------------------------------- /dict/table_structure_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/dict/table_structure_dict.txt -------------------------------------------------------------------------------- /dict/table_structure_dict_ch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/dict/table_structure_dict_ch.txt -------------------------------------------------------------------------------- /dict/te_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/dict/te_dict.txt -------------------------------------------------------------------------------- /image/demo_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/image/demo_1.jpg -------------------------------------------------------------------------------- /image/demo_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/image/demo_10.jpg -------------------------------------------------------------------------------- /image/demo_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/image/demo_11.jpg -------------------------------------------------------------------------------- /image/demo_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/image/demo_12.jpg -------------------------------------------------------------------------------- /image/demo_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/image/demo_13.jpg -------------------------------------------------------------------------------- /image/demo_14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/image/demo_14.jpg -------------------------------------------------------------------------------- /image/demo_15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/image/demo_15.jpg -------------------------------------------------------------------------------- /image/demo_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/image/demo_2.jpg -------------------------------------------------------------------------------- /image/demo_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/image/demo_3.jpg -------------------------------------------------------------------------------- /image/demo_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/image/demo_4.jpg -------------------------------------------------------------------------------- /image/demo_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/image/demo_5.jpg -------------------------------------------------------------------------------- /image/demo_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/image/demo_6.jpg -------------------------------------------------------------------------------- /image/demo_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/image/demo_7.jpg -------------------------------------------------------------------------------- /image/demo_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/image/demo_8.jpg -------------------------------------------------------------------------------- /image/demo_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/image/demo_9.png -------------------------------------------------------------------------------- /model/ocr_model_download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/model/ocr_model_download.sh -------------------------------------------------------------------------------- /model/stru_model_download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/model/stru_model_download.sh -------------------------------------------------------------------------------- /model/模型下载方式.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/model/模型下载方式.txt -------------------------------------------------------------------------------- /nuget/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/nuget/logo.png -------------------------------------------------------------------------------- /sample/OcrConsole/OcrConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/sample/OcrConsole/OcrConsole.csproj -------------------------------------------------------------------------------- /sample/OcrConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/sample/OcrConsole/Program.cs -------------------------------------------------------------------------------- /sample/OcrConsole/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/sample/OcrConsole/Properties/launchSettings.json -------------------------------------------------------------------------------- /sample/OcrConsole4.8/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/sample/OcrConsole4.8/App.config -------------------------------------------------------------------------------- /sample/OcrConsole4.8/OcrConsole4.8.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/sample/OcrConsole4.8/OcrConsole4.8.csproj -------------------------------------------------------------------------------- /sample/OcrConsole4.8/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/sample/OcrConsole4.8/Program.cs -------------------------------------------------------------------------------- /sample/OcrConsole4.8/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/sample/OcrConsole4.8/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /sample/OcrConsole4.8/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/sample/OcrConsole4.8/packages.config -------------------------------------------------------------------------------- /sample/OcrConsoleNet3.1/OcrConsoleNet3.1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/sample/OcrConsoleNet3.1/OcrConsoleNet3.1.csproj -------------------------------------------------------------------------------- /sample/OcrConsoleNet3.1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/sample/OcrConsoleNet3.1/Program.cs -------------------------------------------------------------------------------- /sample/OcrConsoleNet5.0/OcrConsoleNet5.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/sample/OcrConsoleNet5.0/OcrConsoleNet5.0.csproj -------------------------------------------------------------------------------- /sample/OcrConsoleNet5.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/sample/OcrConsoleNet5.0/Program.cs -------------------------------------------------------------------------------- /sample/OcrConsoleNet6.0/OcrConsoleNet6.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/sample/OcrConsoleNet6.0/OcrConsoleNet6.0.csproj -------------------------------------------------------------------------------- /sample/OcrConsoleNet6.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/sample/OcrConsoleNet6.0/Program.cs -------------------------------------------------------------------------------- /sample/OcrConsoleNet8.0/OcrConsoleNet8.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/sample/OcrConsoleNet8.0/OcrConsoleNet8.0.csproj -------------------------------------------------------------------------------- /sample/OcrConsoleNet8.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/sample/OcrConsoleNet8.0/Program.cs -------------------------------------------------------------------------------- /sample/OcrConsoleNet9.0/OcrConsoleNet9.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/sample/OcrConsoleNet9.0/OcrConsoleNet9.0.csproj -------------------------------------------------------------------------------- /sample/OcrConsoleNet9.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/sample/OcrConsoleNet9.0/Program.cs -------------------------------------------------------------------------------- /src/paddleocr/download/dict_download.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/src/paddleocr/download/dict_download.cs -------------------------------------------------------------------------------- /src/paddleocr/download/model_download.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/src/paddleocr/download/model_download.cs -------------------------------------------------------------------------------- /src/paddleocr/download/ocr_model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/src/paddleocr/download/ocr_model.cs -------------------------------------------------------------------------------- /src/paddleocr/paddleocr.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/src/paddleocr/paddleocr.csproj -------------------------------------------------------------------------------- /src/paddleocr/paddleocr/ocr_cls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/src/paddleocr/paddleocr/ocr_cls.cs -------------------------------------------------------------------------------- /src/paddleocr/paddleocr/ocr_det.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/src/paddleocr/paddleocr/ocr_det.cs -------------------------------------------------------------------------------- /src/paddleocr/paddleocr/ocr_rec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/src/paddleocr/paddleocr/ocr_rec.cs -------------------------------------------------------------------------------- /src/paddleocr/paddleocr/paddle_ocr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/src/paddleocr/paddleocr/paddle_ocr.cs -------------------------------------------------------------------------------- /src/paddleocr/paddleocr/paddle_structure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/src/paddleocr/paddleocr/paddle_structure.cs -------------------------------------------------------------------------------- /src/paddleocr/paddleocr/paddleocr_utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/src/paddleocr/paddleocr/paddleocr_utility.cs -------------------------------------------------------------------------------- /src/paddleocr/paddleocr/post_processor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/src/paddleocr/paddleocr/post_processor.cs -------------------------------------------------------------------------------- /src/paddleocr/paddleocr/predictor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/src/paddleocr/paddleocr/predictor.cs -------------------------------------------------------------------------------- /src/paddleocr/paddleocr/preprocess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/src/paddleocr/paddleocr/preprocess.cs -------------------------------------------------------------------------------- /src/paddleocr/paddleocr/runtime_option.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/src/paddleocr/paddleocr/runtime_option.cs -------------------------------------------------------------------------------- /src/paddleocr/paddleocr/structure_layout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/src/paddleocr/paddleocr/structure_layout.cs -------------------------------------------------------------------------------- /src/paddleocr/paddleocr/structure_table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/src/paddleocr/paddleocr/structure_table.cs -------------------------------------------------------------------------------- /src/paddleocr/pipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/src/paddleocr/pipeline.cs -------------------------------------------------------------------------------- /test/test_ocr/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/test/test_ocr/Program.cs -------------------------------------------------------------------------------- /test/test_ocr/test_ocr.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/test/test_ocr/test_ocr.csproj -------------------------------------------------------------------------------- /test/test_online_model/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/test/test_online_model/Program.cs -------------------------------------------------------------------------------- /test/test_online_model/test_online_model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/test/test_online_model/test_online_model.csproj -------------------------------------------------------------------------------- /test/test_struct/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/test/test_struct/Program.cs -------------------------------------------------------------------------------- /test/test_struct/test_struct.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojin-yan/PaddleOCR-OpenVINO-CSharp/HEAD/test/test_struct/test_struct.csproj --------------------------------------------------------------------------------