资源简介
Java调用只支持32位jdk环境调用此接口,识别率超高。
注意:若在运行过程中报错找不到**jdk/bin/CClib.dll,只需将资源中的CClib.dll复制到**jdk/bin/路径下即可。
代码片段和文件信息
/*
有问题可以在www.duyan.top留言。
*/
package UnitTest;
import com.sun.jna.Library;
import com.sun.jna.Native;
import java.io.File;
public class cnnLoadTest {
public static void main(String[] args){
//return version and modelcheck is 32bit or 64bitonly 32bit by supported.
String version = System.getProperty(“java.version“) +“ “+ System.getProperty(“sun.arch.data.model“);
System.out.println(version);
cnn.INSTANCE.LoadCnnFromFile(getPath() + “\\discriminate\\cnn\\Caffe.model“);
String code = cnn.INSTANCE.GetImageFromFile(getPath()+“\\test.jpg“);
System.out.println(“result of identification: “+code);
}
//cnn dll called use jna (and also can use JNative).
private interface cnn extends Library {
cnn INSTANCE = (cnn) Native.loadLibrary(getPath() + “\\discriminate\\cnn\\cnn.dll“ cnn.class);//载入dll
boolean LoadCnnFromFile(String FilePath); //载入字库
String GetImageFromFile(String imgPath); //识别图片
}
//get current project path.
private static String getPath() {
try {
File directory = new File(““);//参数为空?
String courseFile = directory.getCanonicalPath();
//System.out.println(“getPath: “+courseFile);
return courseFile;
} catch (Exception exp) {
exp.printStackTrace();
}
return null;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 45535232 2017-12-02 19:15 cnn\Caffe.model
文件 4834383 2017-11-02 10:52 cnn\CClib.dll
文件 946176 2018-04-14 15:21 cnn\cnn.dll
目录 0 2018-10-23 14:01 cnn
文件 1472 2018-10-23 14:06 cnn\test.java
----------- --------- ---------- ----- ----
51317263 5
- 上一篇:基于java的校园导游系统
- 下一篇:javaweb毕业设计-智力测试+论文
相关资源
- Android开发中短信验证码功能实现
- eclipse-3.7.1 windows 32位/64位
- Understand-4.0.797-Windows-32位+破解版注册
- 验证码字体
- jdk7 32位 适用于XP系统
- jre1.8 32位
- MediaInfo_DLL
- jnative
- Android实现点击获取验证码60秒后重新
- Java串口开发用到的comm.jar,javax.comm
- MsmqJava.dll64位和源代码
- jacob-1.18-M2(含Jacob.jar包以及Jacob.dll文
- adb.exe+AdbWinApi.dll
- jacob.jar支持64位和32位
- 支持64位的Jpcap.dll
- java下进行抓包使用的jpcap.dll和jpcap.
- jshortcut.jar jshortcut.dll x64 x86api
- hadoop-2.6.0 win工具包 hadoop.dll winutils
- hadoop2.7.1(hadoop.dllwinutils.exe) 亲自测
- jpcap.jar jpcap.dll 32位 64位 完整匹配无
-
NppAst
yle 64位DLL - tcnative-1.dll
- msmqjava.dll 64位版本 测试可用
- jacob jar包和dll文件64位和32位都有
- jpcap_x64.dll+jpcap.jar
- javaweb用户验证码登录session
- AdbWinApi.dll
- jacob-1.14.3 jar和dllx86x64
- java操作微软队列消息(MSMQ)项目源码
- hadoop-2.6.0-hadoop.dll-winutils.exe
评论
共有 条评论