First time here? Check out the FAQ!

Ask Your Question
0

decomposing Points

asked Sep 13 '14

mikel gravatar image

updated Sep 13 '14

berak gravatar image

I have a vector of Point2f and I would like to work with the x and y values separately. Is there an easy way to change something like vector<point2f> into a Mat with the x and y as separate columns?

Preview: (hide)

1 answer

Sort by » oldest newest most voted
1

answered Sep 13 '14

berak gravatar image

updated Sep 13 '14

// setup demo data:
vector<Point2f> pv;
pv.push_back(Point2f(1,2));
pv.push_back(Point2f(3,4));
pv.push_back(Point2f(5,6));
pv.push_back(Point2f(7,8));

// make a Mat of it:
Mat m(pv);
cerr << m << endl;

// re-arrange it to a 4row, 2col, 1chan Mat:
m = m.reshape(1,4);
cerr << m << endl;

// now you can access single cols: 
cerr << m.col(0) << endl;
cerr << m.col(1) << endl;

[1, 2; 3, 4; 5, 6; 7, 8]
[1, 2;
  3, 4;
  5, 6;
  7, 8]
[1; 3; 5; 7]
[2; 4; 6; 8]
Preview: (hide)

Question Tools

Stats

Asked: Sep 13 '14

Seen: 195 times

Last updated: Sep 13 '14