gpt4 book ai didi

c++ - OpenCV 错误 : Bad flag (parameter or structure field) (Unrecognized or unsupported array type) in cvGetMat

转载 作者:太空宇宙 更新时间:2023-11-03 23:17:40 28 4
gpt4 key购买 nike

当我尝试从我的代码中注释掉 cvtColor 函数时,出现以下错误:“OpenCV 错误:cvGetMat 中的错误标志(参数或结构字段)(无法识别或不支持的数组类型)”

如果我使用 cvtColor 函数,那么程序运行得很好。

我试图将其注释掉,因为我想要原始的颜色框架而不是变灰。这是我的代码:

#include <stdio.h>
#include <cv.h>
#include <highgui.h>
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include "opencv2/video/tracking.hpp"
#include <math.h>
#include <time.h>

using namespace cv;
using namespace std;

float MHI_DURATION = 0.05;
int DEFAULT_THRESHOLD = 10;

void draw_motion_comp(Mat& img, int x_coordinate, int y_coordinate, int width, int height);

Mat frame;

int main(int argc, char** argv)
{
namedWindow("Motion_tracking",CV_WINDOW_AUTOSIZE);

char fileName[100] = "C:\\Users\\survya\\Downloads/VASTChallenge2009-M3-VIDEOPART1 (1).mov";
VideoCapture cap(fileName);

if ( !cap.read(frame) ) // if not success, exit program
{
cout << "Cannot open the video file" << endl;
return -1;
}

Mat frame,ret,frame_diff,gray_diff,motion_mask;

for(int i = 0; i<10; i++)
{
cap.read(frame);
Size frame_size = frame.size();
int h = frame_size.height;
int w = frame_size.width;
if(i==5)
break;

}

ret = frame.clone();
Size frame_size = frame.size();
int h = frame_size.height;
int w = frame_size.width;
Mat prev_frame = frame.clone();
Mat motion_history(h,w, CV_32FC1,Scalar(0,0,0));
Mat seg_mask(h,w, CV_32FC1,Scalar(0,0,0));
vector<Rect> seg_bounds;
Mat vis(h,w,CV_32FC3);
Mat vis1(h,w,CV_8UC1);
while(1)
{
cap.retrieve(frame);
cap.read(frame);
ret = frame.clone();
if (!ret.data) //if not success, break loop
{
cout << "video ended" << endl;
break;
}
absdiff(frame, prev_frame, frame_diff);

//cvtColor(frame_diff,gray_diff, CV_BGR2GRAY); //want to comment this line out but getting the error stated in my question

threshold(gray_diff,ret,DEFAULT_THRESHOLD,255,0);
motion_mask = ret.clone();
double timestamp = 1000.0*clock()/CLOCKS_PER_SEC;
updateMotionHistory(motion_mask, motion_history, timestamp, MHI_DURATION);
segmentMotion(motion_history, seg_mask, seg_bounds, timestamp, 32);

vis = frame.clone();
vis = frame_diff.clone();

for(int i=0; i< motion_history.cols; i++)
{
for(int j=0; j< motion_history.rows ; j++)
{
float a = motion_history.at<float>(j,i);
if((a-timestamp-MHI_DURATION)/MHI_DURATION <= -5)
vis1.at<uchar>(j,i) = 0;
else
vis1.at<uchar>(j,i) = (a-timestamp-MHI_DURATION)/MHI_DURATION;
}
}

cvtColor(vis1,vis,COLOR_GRAY2BGR);

for(unsigned int h = 0; h < seg_bounds.size(); h++)
{
Rect rec = seg_bounds[h];
if(rec.area() > 5000 && rec.area() < 70000)
{
rectangle(vis, rec,Scalar(0,0,255),2);
}
}
imshow("Motion_tracking",vis);
prev_frame = frame.clone();
if(waitKey(30) >= 0) //wait for 'esc' key press for 30ms. If 'esc' key is pressed, break loop
{
cout << "esc key is pressed by user" << endl;
break;
}
}

return 0;

}

最佳答案

错误是因为,如果您注释掉该行:

  1. 您永远不会为 gray_diff 赋值,因此以下 threshold 函数将对无效矩阵起作用,并且

  2. 当您计算 absdiff 时,frameprev_frameCV_8UC3 类型,因此也将是结果 frame_diff。但是 threshold 需要类型为 CV_8UC1 的输入。因此,您需要将 frame_diff 转换为单 channel gray_diff,以便使用 threshold 对其进行处理。

所以,在这里您需要使用cvtColor,我看不出您有任何理由要删除它。

关于c++ - OpenCV 错误 : Bad flag (parameter or structure field) (Unrecognized or unsupported array type) in cvGetMat,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36611356/

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