Ask Your Question

jcrose's profile - activity

2017-06-28 08:43:29 -0600 received badge  Student (source)
2014-02-20 01:49:05 -0600 commented question How to multiply point3f with matx type

Sorry, the problem formulation lacked some clarity. Please take a look at the edited version.

2014-02-20 01:45:52 -0600 received badge  Editor (source)
2014-02-19 09:33:55 -0600 asked a question How to multiply point3f with matx type

I'm not sure if this is trivial in OpenCV and c++, but after looking vastly around on websites, I still didn't find an elegant way to solve this.

So I have 3x3 camera matrix K of type Matx33f and #N-homogenous image points stored in a vector<point3f> named X. What I'd like to achieve is the calculation of the projective rays via:

Xn = K.inv() * X_vec,

whereby X_vec = [x1 x2 ... xN; y1 y2 ... yN; 1 1 ... 1]; (3xN)

Edit: The problem is that X is of type vector<point3f> but I need it in a vector form in the way of X_vec. I know how to to the muliplication with a loop, but I wonder if there isn't a simpler and more elegant way to transform vector<point3f> X into X_vec. Can't imagine it to be that costly.

Many thanks in advance.