Crates.io | cnocr_rs |
lib.rs | cnocr_rs |
version | 0.1.4 |
source | src |
created_at | 2022-11-01 08:38:34.131198 |
updated_at | 2022-11-15 01:33:10.806976 |
description | 一份来自python cnocr的Rust实现 |
homepage | https://github.com/CoireLen/RustCnOCR |
repository | https://github.com/CoireLen/RustCnOCR |
max_upload_size | |
id | 702721 |
size | 28,709 |
所以在onnrruntime 可用之前 请clone源码加入项目后编译
use RustCnOcr::Ocr::{ocr,OcrTraitConst};
fn main() {
let ocr=ocr::new();
let vs=ocr.from_path("cnocr.png".to_string());
for i in vs{
println!("识别到:{:?}",i);
}
}
识别到:("cnocr自V2.1.2之后,可直接使用的模型包含两类:1)cnocr自己训练的模型,通常会包含PyTorch和", 0.38941005)
识别到:("ONNX版本;2)从其他ocr引擎搬运过来的训练好的外部模型,ONNX化后用于cnocr中。", 0.42324248)