gpt4 book ai didi

matlab - Matlab c++中OpenCV cvtColor出错

转载 作者:行者123 更新时间:2023-12-02 17:51:06 25 4
gpt4 key购买 nike

在 Matlab 中运行 c++ 函数时出现以下错误。

WARNING: Couldn't read movie file example.avi
Unexpected Standard exception from MEX file.
What()
is:/tmp/A3p1_2964_800/batserve/A3p1/maci64/OpenCV/modules/imgproc/src/color.cpp:3256:
error: (-215) scn == 3 || scn == 4 in function cvtColor
..
Error in rundemo (line 2)
r = facedetection(inputVideo);

下面是 facedetection.cpp 的代码
#include <iostream>
#include <vector>
#include <opencv/cv.h>
#include <opencv/highgui.h>
#include "mex.h"

using namespace std;
using namespace cv;

vector<Rect> detect(Mat img, CascadeClassifier face_cascade){
vector<Rect> faces;
Mat img_gray;
cvtColor(img, img_gray, COLOR_BGR2GRAY);
face_cascade.detectMultiScale(img_gray, faces, 1.1, 2);
return faces;
}

void mexFunction(int nlhs, mxArray *plhs[ ],int nrhs, const mxArray *prhs[ ]){

VideoCapture inputVideo(mxArrayToString(prhs[0]));
Mat img;
inputVideo >> img;

string face_cascade_name = "/usr/local/share/OpenCV/haarcascades/haarcascade_frontalface_alt.xml";
CascadeClassifier face_cascade;
face_cascade.load(face_cascade_name);

vector<Rect> rects = detect(img,face_cascade);
int numFaces = rects.size();

plhs[0] = (mxArray *) mxCreateNumericMatrix(numFaces,4,mxDOUBLE_CLASS,mxREAL);
double* outPtr = mxGetPr(plhs[0]);
for(int i = 0; i < numFaces; i++){
Rect rect = rects[i];
outPtr[i+0*numFaces] = rect.x;
outPtr[i+1*numFaces] = rect.y;
outPtr[i+2*numFaces] = rect.width;
outPtr[i+3*numFaces] = rect.height;
}
}

我猜我分配给 face_cascade_name 的路径有问题。此代码在具有不同路径的 Windows 计算机上运行,​​然后我将其更改为显示的那个,因为我使用的是 Mac。这是我计算机上 haarcascade_frontalface_alt.xml 的路径。谢谢你的帮忙!

最佳答案

首先,检查您的视频是否被正确读取。你说代码在windows上工作。确保您的视频路径正确。

在你的 mex 函数中,添加

Mat img;
inputVideo >> img;
// Add the following lines to check if img is valid
if (img.data == NULL)
{
printf("Video not read in properly\n");
exit(1);
}

接下来,检查 img 的 channel 数。如果运行 cvtColor(img, COLOR_BGR2GRAY),则需要 channel 数为 3。
printf("Number of channels for img: %d\n", img.channels());

如果 channel 数等于 1,那么您的 img 已经是单 channel ,这就是 cvtColor 给出错误的原因。所以在这种情况下不需要颜色转换,您只需注释掉 cvtColor 的行,错误就会消失。

作为旁注,要调试它,您可能需要显示视频的几帧,即显示几帧 img 只是为了检查它们是否正确。

关于matlab - Matlab c++中OpenCV cvtColor出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21212476/

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