Home
last modified time | relevance | path

Searched refs:corrPoints_dat (Results 1 – 1 of 1) sorted by relevance

/external/opencv/cvaux/src/
Dcvtrifocal.cpp245 double corrPoints_dat[3*3*2];/* 3-point(images) by 3-coordinates by 2-correspondence*/ in icvComputeProjectMatrices6Points() local
247 … corrPoints1 = cvMat(3,3,CV_64F,corrPoints_dat); /* 3-coordinates for each of 3-points(3-image) */ in icvComputeProjectMatrices6Points()
248 … corrPoints2 = cvMat(3,3,CV_64F,corrPoints_dat+9);/* 3-coordinates for each of 3-points(3-image) */ in icvComputeProjectMatrices6Points()
294 corrPoints_dat[j * 9 + 0 * 3 + i] = trPnt_dat[0];/* x */ in icvComputeProjectMatrices6Points()
295 corrPoints_dat[j * 9 + 1 * 3 + i] = trPnt_dat[1];/* y */ in icvComputeProjectMatrices6Points()
296 corrPoints_dat[j * 9 + 2 * 3 + i] = trPnt_dat[2];/* w */ in icvComputeProjectMatrices6Points()