First time here? Check out the FAQ!

Ask Your Question
0

compare two rows of a matrix

asked Jan 23 '13

southpark gravatar image

updated Jan 24 '13

Haris gravatar image

Basically, I want to compare two rows from a matrix and return the logic values.

 Mat x(240, 320, CV_32F); // 240*320 image size
 Mat pairs(5, 2, CV_8U);  // 5*2 matrix, each row is a pair of row index from x
 int P  = pairs.rows;
 for (int j=0; j<P; j++) {
 z = (x.row(pairs(j,1)) > x.row(pairs(j,2)));
 }

It gives the following error,

   error C2664: 'cv::Mat cv::Mat::operator ()(const cv::Range *) const' : cannot convert parameter 1 from 'int' to 'const cv::Range *'

How to resolve this issue? Is it because the operator of row(int i) is wrong?

Thanks for your help.

Preview: (hide)

1 answer

Sort by » oldest newest most voted
2

answered Jan 24 '13

Daniil Osokin gravatar image

Hi! It's because operator() from pairs. Try this:


x.row(pairs.at<unsigned char>(j,0)) > x.row(pairs.at<unsigned char>(j,1))
Preview: (hide)

Comments

Thanks all the same. Later, I also figured out the problem.

southpark gravatar imagesouthpark (Jan 25 '13)edit

Question Tools

Stats

Asked: Jan 23 '13

Seen: 1,378 times

Last updated: Jan 23 '13