• 大小: 45.65MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-06-16
  • 语言: Java
  • 标签: dll  32位  验证码  

资源简介

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


评论

共有 条评论