
最近在看一些扫描版本的电子书,有时候想要摘录一些内容要用到 OCR,目前网上找到的是要不就是有数量限制要不就是排队时间巨长,前些天自己用百度的 OCR 写了一个小东西( http://server.liuin.cn:8080 ),但是还是要将截图保存然后选择图片,这样花的时间有点长。
目前知道 macOS 上有一个比较好的工具: https://github.com/oott123/alfred-clipboard-ocr
所以想请教一下各位有没有 Win 下类似的好的工具推荐,就是那种能直接从粘贴板复制提交然后获得结果的
1 laqow 2018 年 2 月 8 日 via Android 不介意的话 acrobat |
2 choury 2018 年 2 月 8 日 OneNote 啊 |
3 LosLord 2018 年 2 月 8 日 via Android Windows10 带 ocr 的 api 的,好像直接调用就行。 官方还有个 demo 呢,可以直接用 vs 运行 |
4 huclengyue 2018 年 2 月 8 日 via Android 感觉百度的还不错。 |
5 huclengyue 2018 年 2 月 8 日 via Android 嗯,要自己调接口 |
8 Sixzeroo OP @huclengyue 百度识别率还行,我用的这几天中文基本上很少有错 |
9 huiyadanli 2018 年 2 月 8 日 ABBYY |
10 LosLord 2018 年 2 月 8 日 via Android @Sixzeroo 不知道你需求什么样的,win10 带的是 ocr api 就是 c#的 uwp 应用好像。 https://github.com/Microsoft/Windows-universal-samples/tree/master/Samples/OCR |
11 applehater 2018 年 2 月 8 日 via iPhone @Sixzeroo 看我发过的帖子就可以了。 |
12 zhaoxiting1997 2018 年 2 月 8 日 abbyy finereader 绝对是最好的,就是比较大 |
13 applehater 2018 年 2 月 8 日 via iPhone |
14 LosLord 2018 年 2 月 9 日 via Android @applehater 这个我当时也有需求要写,可是我不会 c# |
15 applehater 2018 年 2 月 9 日 via iPhone |
16 masir 2018 年 2 月 9 日 via Android Abbyy |
17 g00001 2018 年 2 月 9 日 可以用 aardio 写一个, 不需要运行时,生成软件几百 KB,开发工具 5.6MB ,简单方便。 几句代码可以解决问题: import console import win.clip; import gdip.bitmap; import baidu.client; //创建百度 OCR 客户端 var http = baidu.client(); http.setAuth("http://update.aau.cn/v10/test/test-baidu.aardio") //读取剪贴板图像 var hbmp = win.clip.readBitmap(); var bmp = gdip.bitmap(hbmp); //调用 OCR 识别接口 var ocr = http.api("https://aip.baidubce.com/rest/2.0/ocr/v1/"); var result = ocr.general_basic( image = bmp.saveToBuffer("*.jpg"); ) //输出结果 console.dumpJson(result); console.pause(true); 参考源码: http://bbs.aardio.com/forum.php?mod=viewthread&tid=22093 调用 google 的 tesseract-ocr 也可以 http://bbs.aardio.com/forum.php?mod=viewthread&tid=12601 |
18 qianyi0129 2018 年 2 月 9 日 abbyy |
19 newbieo0O 2018 年 2 月 9 日 python 写个吧,调百度接口 |
20 qsnow6 2018 年 2 月 9 日 也别调百度接口了,直接用 win 10 系统自带 |
21 qsnow6 2018 年 2 月 9 日 |
22 jsnjfz 2018 年 2 月 9 日 百度,阿里上的汉王云 |
23 ss0xt 2018 年 2 月 9 日 可以试试 知网 CAJViewer |
24 nogoodren 2018 年 2 月 9 日 OneNote |