Java Netbeans显示opencv3的错误;错误:无法找到或加载主类库“;

Java Netbeans显示opencv3的错误;错误:无法找到或加载主类库“;,java,opencv,netbeans-8,Java,Opencv,Netbeans 8,我曾尝试从link在Netbeans中用Java执行opencv项目 代码如下: /* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package gui; import

我曾尝试从link在Netbeans中用Java执行opencv项目

代码如下:

/*
* To change this license header, choose License Headers in Project     Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
  package gui;
  import java.awt.Graphics;
  import java.awt.Image;
  import java.awt.image.BufferedImage;
  import java.io.ByteArrayInputStream;
  import javax.imageio.ImageIO;
  import org.opencv.core.Core;
  import org.opencv.core.Mat;
  import org.opencv.core.MatOfByte;
  import org.opencv.core.MatOfRect;
  import org.opencv.core.Point;
  import org.opencv.core.Rect;
  import org.opencv.core.Scalar;
  //import org.opencv.core.Size;
  import org.opencv.imgcodecs.Imgcodecs;
  import org.opencv.videoio.VideoCapture;
  import org.opencv.imgproc.Imgproc;
  import org.opencv.objdetect.CascadeClassifier;


/**
*
* @author Tawfiq Chowdhury
*/
 public class FaceDetection extends javax.swing.JFrame {
 private DaemonThread myThread = null;
 int count = 0;
 VideoCapture webSource = null;
 Mat frame = new Mat();
 MatOfByte mem = new MatOfByte();
 CascadeClassifier faceDetector = new CascadeClassifier("C:/Users/Tawfiq  Chowdhury/Documents/NetBeansProjects/FaceDetection/src/gui /haarcascade_frontalface_alt.xml");
 MatOfRect faceDetections = new MatOfRect();
 /**
 * Creates new form FaceDetection
 */
 class DaemonThread implements Runnable {

    protected volatile boolean runnable = false;

    @Override
    public void run() {
        synchronized (this) {
            while (runnable) {
                if (webSource.grab()) {
                    try {
                        webSource.retrieve(frame);
                        Graphics g = jPanel1.getGraphics();
                        faceDetector.detectMultiScale(frame, faceDetections);
                        for (Rect rect : faceDetections.toArray()) {
                           // System.out.println("ttt");
                            Imgproc.rectangle(frame, new Point(rect.x, rect.y), new Point(rect.x + rect.width, rect.y + rect.height),
                                    new Scalar(0, 255,0));
                        }
                        Imgcodecs.imencode(".bmp", frame, mem);
                        Image im = ImageIO.read(new ByteArrayInputStream(mem.toArray()));
                        BufferedImage buff = (BufferedImage) im;
                        if (g.drawImage(buff, 0, 0, getWidth(), getHeight()-150 , 0, 0, buff.getWidth(), buff.getHeight(), null)) {
                            if (runnable == false) {
                                System.out.println("Paused ..... ");
                                this.wait();
                            }
                        }
                    } catch (Exception ex) {
                        System.out.println("Error!!");
                        ex.printStackTrace();
                    }
                }
            }
        }
    }
}

public FaceDetection() {
    initComponents();
}

/**
 * This method is called from within the constructor to initialize the form.
 * WARNING: Do NOT modify this code. The content of this method is always
 * regenerated by the Form Editor.
 */
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">                          
private void initComponents() {

    jPanel1 = new javax.swing.JPanel();
    jButton1 = new javax.swing.JButton();
    jButton2 = new javax.swing.JButton();

    setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);

    jButton1.setText("Start");
    jButton1.addActionListener(new java.awt.event.ActionListener() {
        public void actionPerformed(java.awt.event.ActionEvent evt) {
            jButton1ActionPerformed(evt);
        }
    });

    jButton2.setText("Pause");
    jButton2.addActionListener(new java.awt.event.ActionListener() {
        public void actionPerformed(java.awt.event.ActionEvent evt) {
            jButton2ActionPerformed(evt);
        }
    });

    javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);
    jPanel1.setLayout(jPanel1Layout);
    jPanel1Layout.setHorizontalGroup(
        jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
        .addGroup(jPanel1Layout.createSequentialGroup()
            .addGap(153, 153, 153)
            .addComponent(jButton1)
            .addGap(156, 156, 156)
            .addComponent(jButton2)
            .addContainerGap(198, Short.MAX_VALUE))
    );
    jPanel1Layout.setVerticalGroup(
        jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
        .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, jPanel1Layout.createSequentialGroup()
            .addContainerGap(296, Short.MAX_VALUE)
            .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                .addComponent(jButton1)
                .addComponent(jButton2))
            .addGap(86, 86, 86))
    );

    javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
    getContentPane().setLayout(layout);
    layout.setHorizontalGroup(
        layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
        .addGroup(layout.createSequentialGroup()
            .addGap(50, 50, 50)
            .addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
            .addContainerGap(115, Short.MAX_VALUE))
    );
    layout.setVerticalGroup(
        layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
        .addGroup(layout.createSequentialGroup()
            .addGap(59, 59, 59)
            .addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
            .addContainerGap())
    );

    pack();
}// </editor-fold>                        

private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                         
    webSource = new VideoCapture(0); // video capture from default cam
    myThread = new DaemonThread(); //create object of threat class
    Thread t = new Thread(myThread);
    t.setDaemon(true);
    myThread.runnable = true;
    t.start();                 //start thrad
    jButton1.setEnabled(true);  // deactivate start button
    jButton2.setEnabled(false);  
}                                        

private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {                                         

    myThread.runnable = false;            // stop thread
    jButton2.setEnabled(true);   // activate start button 
    jButton1.setEnabled(false);     // deactivate stop button

    webSource.release();  // stop caturing fron cam


}                                        

/**
 * @param args the command line arguments
 */
public static void main(String args[]) {
    System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
    /* Set the Nimbus look and feel */
    //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
    /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
     * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html 
     */
    try {
        for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
            if ("Nimbus".equals(info.getName())) {
                javax.swing.UIManager.setLookAndFeel(info.getClassName());
                break;
            }
        }
    } catch (ClassNotFoundException ex) {
        java.util.logging.Logger.getLogger(FaceDetection.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
    } catch (InstantiationException ex) {
        java.util.logging.Logger.getLogger(FaceDetection.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
    } catch (IllegalAccessException ex) {
        java.util.logging.Logger.getLogger(FaceDetection.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
    } catch (javax.swing.UnsupportedLookAndFeelException ex) {
        java.util.logging.Logger.getLogger(FaceDetection.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
    }
    //</editor-fold>

    /* Create and display the form */
    java.awt.EventQueue.invokeLater(new Runnable() {
        public void run() {
            new FaceDetection().setVisible(true);
        }
    });
}

// Variables declaration - do not modify                     
private javax.swing.JButton jButton1;
private javax.swing.JButton jButton2;
private javax.swing.JPanel jPanel1;
// End of variables declaration                   
}
然而,当我点击run按钮时,它显示BUILD失败并且

无法找到或加载主类库


我在Netbeans 8中使用最新版本的opencv和最新版本的JDK。opencv3的代码有一些问题,所以我根据link中提供的建议做了一些更改。

解决方案在于虚拟机选项。我已经添加了VM选项-Djava library path=“/usr/lib/jni/”,以使librxtxjava工作(根据本文)。删除此VM选项修复了我的问题。我还没有测试我是否仍然可以连接到我的串行设备(我使用librxtx java的原因),因为我这里没有串行设备。

尝试移动
System.loadLibrary(Core.NATIVE\u LIBRARY\u NAME)超出主方法
加载本机库时,它应该是第一个加载的库。
因此,将加载语句放在静态存根中

public class FaceDetection extends javax.swing.JFrame {
   static{
      System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
   }
   ....
   ....
   ....
   // rest of your code goes here 
   ....
   ....
   ....
}

这里的相关问题:你能解释一下你的意思是你删除了路径吗?我这样做了,它显示没有找到任何打开的cv库。嗨,我测试了这个简单的程序,它显示了相同的错误:无法找到或加载主类库。你知道为什么会这样吗<代码>导入org.opencv.core.core;导入org.opencv.core.CvType;导入org.opencv.core.Mat;公共类HelloCV{public static void main(String[]args){System.loadLibrary(Core.NATIVE_LIBRARY_NAME);Mat Mat=Mat.eye(3,3,CvType.CV_8UC1);System.out.println(“Mat=“+Mat.dump());}}
public class FaceDetection extends javax.swing.JFrame {
   static{
      System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
   }
   ....
   ....
   ....
   // rest of your code goes here 
   ....
   ....
   ....
}