Createigenface opencv函数

时间:2017-04-25 20:10:48

标签: java opencv

我正在进行人脸识别项目,但不幸的是我没有使用OpenCV的经验。我在调用createEigenface函数时遇到了问题,因此我创建了以下简单脚本:

/*
 * 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 inc;

import org.opencv.contrib.FaceRecognizer;

/**
 *
 * @author ali
 */
public class Inc {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        // TODO code application logic here
        FaceRecognizer faceRecognizer = createEigenFaceRecognizer();

    }
} 

构建时,我收到以下错误:

  

错误:找不到符号           FaceRecognizer faceRecognizer = createEigenFaceRecognizer(); symbol:方法createEigenFaceRecognizer()location:class Inc 1   错误

提及:

  • 我使用Netbeans程序(我也使用了eclipse但是同样的错误)
  • 添加了opencv_library-2.4.3版本,其中包括org.opencv.contrib.FaceRecognizer

你能解释一下为什么我会收到这个错误!任何想法都会有所帮助!谢谢!

0 个答案:

没有答案