├── .gitignore ├── LICENSE ├── README.md ├── img ├── demo_ocr_cn.gif ├── demo_ocr_en.gif ├── demo_trans.gif ├── env_button.png ├── env_value.png ├── file_ocr.png ├── first_lang_selection.png ├── icon.png ├── jetbrains_logo.png ├── ocr_abuse.png └── second_lang_selection.png └── src ├── config.py ├── error_declare.py ├── img_to_b64.py ├── ocr.py ├── pngpaste ├── LICENSE └── pngpaste ├── requirements.txt ├── tencent_ocr.py └── translate.py /.gitignore: -------------------------------------------------------------------------------- 1 | debug 2 | README-EN.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chandler-Lu/alfred-ocr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chandler-Lu/alfred-ocr/HEAD/README.md -------------------------------------------------------------------------------- /img/demo_ocr_cn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chandler-Lu/alfred-ocr/HEAD/img/demo_ocr_cn.gif -------------------------------------------------------------------------------- /img/demo_ocr_en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chandler-Lu/alfred-ocr/HEAD/img/demo_ocr_en.gif -------------------------------------------------------------------------------- /img/demo_trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chandler-Lu/alfred-ocr/HEAD/img/demo_trans.gif -------------------------------------------------------------------------------- /img/env_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chandler-Lu/alfred-ocr/HEAD/img/env_button.png -------------------------------------------------------------------------------- /img/env_value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chandler-Lu/alfred-ocr/HEAD/img/env_value.png -------------------------------------------------------------------------------- /img/file_ocr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chandler-Lu/alfred-ocr/HEAD/img/file_ocr.png -------------------------------------------------------------------------------- /img/first_lang_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chandler-Lu/alfred-ocr/HEAD/img/first_lang_selection.png -------------------------------------------------------------------------------- /img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chandler-Lu/alfred-ocr/HEAD/img/icon.png -------------------------------------------------------------------------------- /img/jetbrains_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chandler-Lu/alfred-ocr/HEAD/img/jetbrains_logo.png -------------------------------------------------------------------------------- /img/ocr_abuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chandler-Lu/alfred-ocr/HEAD/img/ocr_abuse.png -------------------------------------------------------------------------------- /img/second_lang_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chandler-Lu/alfred-ocr/HEAD/img/second_lang_selection.png -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chandler-Lu/alfred-ocr/HEAD/src/config.py -------------------------------------------------------------------------------- /src/error_declare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chandler-Lu/alfred-ocr/HEAD/src/error_declare.py -------------------------------------------------------------------------------- /src/img_to_b64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chandler-Lu/alfred-ocr/HEAD/src/img_to_b64.py -------------------------------------------------------------------------------- /src/ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chandler-Lu/alfred-ocr/HEAD/src/ocr.py -------------------------------------------------------------------------------- /src/pngpaste/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chandler-Lu/alfred-ocr/HEAD/src/pngpaste/LICENSE -------------------------------------------------------------------------------- /src/pngpaste/pngpaste: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chandler-Lu/alfred-ocr/HEAD/src/pngpaste/pngpaste -------------------------------------------------------------------------------- /src/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chandler-Lu/alfred-ocr/HEAD/src/requirements.txt -------------------------------------------------------------------------------- /src/tencent_ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chandler-Lu/alfred-ocr/HEAD/src/tencent_ocr.py -------------------------------------------------------------------------------- /src/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chandler-Lu/alfred-ocr/HEAD/src/translate.py --------------------------------------------------------------------------------