我想开发一个用于扫描和解析(OCR)文档的java应用程序。我已经从这里下载了示例代码。但我的佳能扫描仪并没有使用示例code.Have,任何人都知道有任何模拟器、或虚拟扫描器用于测试CSSN OCR 。(申请或在线服务)?
发布于 2014-01-13 12:47:32
您没有提到您的用例,我想确保您知道CSSN是一种专门的OCR,用于“结构化”卡片类型的文档,如驾驶执照、医疗保险卡等。
让我们一个接一个地讨论这个问题:
Java支持
在构成CSSN的模块中,对这些模块有完全的Java支持:
- The API for (1), (2), and (3) is documented here: [http://id-reader.com/ftp/applications/sdk/docs/SDK\_Java\_API.pdf](http://id-reader.com/ftp/applications/sdk/docs/SDK_Java_API.pdf).
- The API for Medical Card Scan (4) is covered here: [http://id-reader.com/ftp/applications/sdk/docs/MedicSDK\_Java\_API.pdf](http://id-reader.com/ftp/applications/sdk/docs/MedicSDK_Java_API.pdf)
- For (5) and (6), there is no documentation yet, only sample code, at the location you mentioned.
佳能(及其他)扫描器
CSSN捆绑在一起,并与ScanShell和SnapShell扫描仪无缝地工作(在这里阅读更多信息:scanners.htm)。然而,CSSN将与几乎任何扫描仪工作,你的佳能包括在内。
这就是你要让它发挥作用的方法:
- An automated email is sent back to you containing a 60-day free trial SDK demo key.
- Support will follow up with a separate call (they commit to respond within one work day) and provide the activation key you need.
Init*()
函数。例如,要初始化条形码库,请调用InitBCLib()
函数,该函数接受类型为String
的单个参数license
。HTH。你可以随便再问一些你可能有的问题。
https://stackoverflow.com/questions/19723498
复制相似问题