├── .gitignore ├── ChineseRecognition.py ├── ChineseRecognition_sample.py ├── GenerateWords.py ├── README.md ├── Segmentaion.py ├── chinese_fonts ├── DroidSansFallbackFull.ttf ├── NotoSansHans-Black.otf ├── NotoSansHans-Bold.otf ├── NotoSansHans-DemiLight.otf ├── NotoSansHans-Light.otf ├── NotoSansHans-Medium.otf ├── NotoSansHans-Regular.otf ├── NotoSansHans-Thin-Windows.otf ├── fangzheng_fangsong.ttf ├── fangzheng_heiti.TTF ├── fangzheng_jieti.TTF ├── fangzheng_shusong.ttf └── mingliu.ttc ├── chinese_labels └── predict ├── predict.result └── toPredict.png /.gitignore: -------------------------------------------------------------------------------- 1 | dataset/ 2 | .idea/ 3 | -------------------------------------------------------------------------------- /ChineseRecognition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duany049/Chinese_OCR/HEAD/ChineseRecognition.py -------------------------------------------------------------------------------- /ChineseRecognition_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duany049/Chinese_OCR/HEAD/ChineseRecognition_sample.py -------------------------------------------------------------------------------- /GenerateWords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duany049/Chinese_OCR/HEAD/GenerateWords.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duany049/Chinese_OCR/HEAD/README.md -------------------------------------------------------------------------------- /Segmentaion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duany049/Chinese_OCR/HEAD/Segmentaion.py -------------------------------------------------------------------------------- /chinese_fonts/DroidSansFallbackFull.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duany049/Chinese_OCR/HEAD/chinese_fonts/DroidSansFallbackFull.ttf -------------------------------------------------------------------------------- /chinese_fonts/NotoSansHans-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duany049/Chinese_OCR/HEAD/chinese_fonts/NotoSansHans-Black.otf -------------------------------------------------------------------------------- /chinese_fonts/NotoSansHans-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duany049/Chinese_OCR/HEAD/chinese_fonts/NotoSansHans-Bold.otf -------------------------------------------------------------------------------- /chinese_fonts/NotoSansHans-DemiLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duany049/Chinese_OCR/HEAD/chinese_fonts/NotoSansHans-DemiLight.otf -------------------------------------------------------------------------------- /chinese_fonts/NotoSansHans-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duany049/Chinese_OCR/HEAD/chinese_fonts/NotoSansHans-Light.otf -------------------------------------------------------------------------------- /chinese_fonts/NotoSansHans-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duany049/Chinese_OCR/HEAD/chinese_fonts/NotoSansHans-Medium.otf -------------------------------------------------------------------------------- /chinese_fonts/NotoSansHans-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duany049/Chinese_OCR/HEAD/chinese_fonts/NotoSansHans-Regular.otf -------------------------------------------------------------------------------- /chinese_fonts/NotoSansHans-Thin-Windows.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duany049/Chinese_OCR/HEAD/chinese_fonts/NotoSansHans-Thin-Windows.otf -------------------------------------------------------------------------------- /chinese_fonts/fangzheng_fangsong.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duany049/Chinese_OCR/HEAD/chinese_fonts/fangzheng_fangsong.ttf -------------------------------------------------------------------------------- /chinese_fonts/fangzheng_heiti.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duany049/Chinese_OCR/HEAD/chinese_fonts/fangzheng_heiti.TTF -------------------------------------------------------------------------------- /chinese_fonts/fangzheng_jieti.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duany049/Chinese_OCR/HEAD/chinese_fonts/fangzheng_jieti.TTF -------------------------------------------------------------------------------- /chinese_fonts/fangzheng_shusong.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duany049/Chinese_OCR/HEAD/chinese_fonts/fangzheng_shusong.ttf -------------------------------------------------------------------------------- /chinese_fonts/mingliu.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duany049/Chinese_OCR/HEAD/chinese_fonts/mingliu.ttc -------------------------------------------------------------------------------- /chinese_labels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duany049/Chinese_OCR/HEAD/chinese_labels -------------------------------------------------------------------------------- /predict/predict.result: -------------------------------------------------------------------------------- 1 | 一史耽 -------------------------------------------------------------------------------- /predict/toPredict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duany049/Chinese_OCR/HEAD/predict/toPredict.png --------------------------------------------------------------------------------