gpt4 book ai didi

c++ - 打开简历 fisherfaces

转载 作者:可可西里 更新时间:2023-11-01 13:41:25 25 4
gpt4 key购买 nike

我有这个问题,

当我使用 vs2010(调试)(打开 cv 2.4.0)运行时,facerec_demo.cpp 给我程序这个错误

OpenCV Error: Image step is wrong (The matrix is not continuous, thus its number of rows can not be changed) in unknown function, file ......\src\opencv\modul es\core>\src\matrix.cpp, line 801

这个错误将我带到 facerec.cpp 中的这一行
(Fisherfaces::train(InputArray src, InputArray _lbls)

Mat data = asRowMatrix(src, CV_64FC1); <-- this gets a exeption, not handled.

我在 pgm img 数据库中使用,这是我的原始 *facerec_demo.cpp* 文件

#include "stdafx.h" 
#include <opencv2/opencv.hpp>


#include <iostream>
#include <fstream>

#include <vector>
#include <string>
#include <sstream>

using namespace cv;
using namespace std;


vector<string> split_at_commas(const string& row)
{
vector<string> res;
istringstream buf(row);
string s;
while (getline(buf, s, ';'))
res.push_back(s);
return res;
}

Mat toGrayscale(InputArray _src) {
Mat src = _src.getMat();
// only allow one channel
if(src.channels() != 1)
CV_Error(CV_StsBadArg, "Only Matrices with one channel are supported");
// create and return normalized image
Mat dst;
cv::normalize(_src, dst, 0, 255, NORM_MINMAX, CV_8UC1);
return dst;
}

void read_csv(const string& filename, vector<Mat>& images, vector<int>& labels, char separator = ';') {
//std::ifstream file(filename.c_str(), ifstream::in);
std::ifstream file(_T("D:\\Users\\PC ACER\\Documents\\mycsv4.csv"));
if (!file)
throw std::exception();
string line="", path="", classlabel="";
while (getline(file, line)) {
//vector<string> values = split_at_commas(line);
stringstream liness(line);
getline(liness, path, ';');
getline(liness, classlabel);
images.push_back(imread(path, 0));
labels.push_back(atoi(classlabel.c_str()));
}
}

int main(int argc, const char *argv[]) {
// check for command line arguments
if (argc != 2) {
cout << "usage: " << argv[0] << " <csv.ext>" << endl;
exit(1);
}
// path to your CSV
string fn_csv = string(argv[1]);
// images and corresponding labels
vector<Mat> images;
vector<int> labels;
// read in the data
try {
read_csv(fn_csv, images, labels);
} catch (exception&) {
cerr << "Error opening file \"" << fn_csv << "\"." << endl;
exit(1);
}
// get width and height
//int width = images[0].cols;
int height = images[0].rows;
// get test instances
Mat testSample = images[images.size() - 1];
int testLabel = labels[labels.size() - 1];
// ... and delete last element
images.pop_back();
labels.pop_back();
// build the Fisherfaces model
Ptr<FaceRecognizer> model = createFisherFaceRecognizer();
model->train(images, labels);
// test model
int predicted = model->predict(testSample);
cout << "predicted class = " << predicted << endl;
cout << "actual class = " << testLabel << endl;
// get the eigenvectors
Mat W = model->eigenvectors();
// show first 10 fisherfaces
for (int i = 0; i < min(10, W.cols); i++) {
// get eigenvector #i
Mat ev = W.col(i).clone();
// reshape to original size AND normalize between [0...255]
Mat grayscale = toGrayscale(ev.reshape(1, height));
// show image (with Jet colormap)
Mat cgrayscale;
applyColorMap(grayscale, cgrayscale, COLORMAP_JET);
imshow(format("%d", i), cgrayscale);
}
waitKey(0);
return 0;
}

最佳答案

我看到您正在使用 OpenCV 2.4.0。作为开发人员,我承认困惑是我的错:当时我没有彻底检查传递给训练方法的输入数据,所以传递错误对齐数据的人会得到像你这样的错误消息。您看到的错误很可能会发生,因为您的训练图像大小不等。这对于 Eigenfaces 和 Fisherfaces 算法是必需的(对于 Local Binary Patterns Histograms 不是)。 OpenCV 2.4.0 只是尝试将数据重新整形为矩阵,然后出现您看到的错误消息; OpenCV 2.4.2 改为检查(在训练之前)输入数据是否正确对齐并抛出一个有意义的异常......带有非常明确的消息。

这篇文章假设它也可能是由于链接了 OpenCV 库:

如果它没有链接库,则可能是由于图像大小。调整训练图像的大小,可以使用 OpenCV 轻松完成 cv::resize :

但您可能应该考虑切换到 OpenCV 2.4.2,其中添加了所有这些内容:

此版本还附带了详尽的文档:

但是,如果您不能更改为 OpenCV 2.4.2,并且需要继续使用 OpenCV 2.4.0,那么您也可以使用 libfacerec:

这是合并到 OpenCV 中的项目。我确保它可以与 OpenCV 2.4.0 一起使用,并且它将为您提供与 OpenCV 2.4.2 版本完全相同的界面。因此,一旦您想更新到 OpenCV 2.4.2,您只需切换包含项即可。

关于c++ - 打开简历 fisherfaces,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11606737/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com