我有一个根据以下代码动态更改的矩阵;
for( It=all_frames.begin(); It != all_frames.end(); ++It)
{
ItTemp = *It;
subtract(ItTemp, Base, NewData);
cout << "The size of the new data for ";
cout << " is \n" << NewData.rows << "x" << NewData.cols << endl;
cout << "The New Data is: \n" << NewData << endl << endl;
NewData_Vector.push_back(NewData.clone());
}
我要做的是确定cv::Mat NewData是零矩阵的帧。
我尝试使用cv::compare()函数和简单运算符(即NewData == NoData)将其与大小相同的零矩阵进行比较,但我什至无法编译程序。
有没有一种简单的方法确定cv::Mat何时填充零?
最佳答案
我用了
if (countNonZero(NewData) < 1)
{
cout << "Eye contact occurs in this frame" << endl;
}
这是一种非常简单的方法(如果不是最好的话)。
关于c++ - 如何确定cv::Mat是否为零矩阵?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13907574/