如何返回二维数组中特定值的索引?
这是我到目前为止所做的:
Mat *SubResult;
for(int i=0; i < height; i++){
for(int j=0; j< width; j++){
if(SubResult[i][j]<0){
return [i][j];
}
}
}
这是我在您解释后所做的,但仍然出现错误:
void Filter(float* currentframe, float* previousframe, float* SubResult){
int width ;
int height ;
std::vector< std::pair< std::vector<int>, std::vector<int> > > Index;
cv::Mat curr = Mat(height, width, CV_32FC1, currentframe);
cv::Mat prev = Mat(height, width, CV_32FC1, previousframe);
//cv::Mat Sub = Mat(height, width, CV_32FC1, SubResult);
cvSub(currentframe, previousframe, SubResult);
cv::Mat Sub = Mat(height, width, CV_32FC1, SubResult);
for(int i=0; i < height; i++){
for(int j=0; j< width; j++){
if(Sub[i][j] < 0){
Index.push_back(std::make_pair(i,j));
}
}
}
} }