Home
last modified time | relevance | path

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

/external/opencv/cvaux/src/
Dcvlevmartrif.cpp218 double point3D_dat[3]; in icvFunc_ProjTrifocal() local
219 point3D = cvMat(3,1,CV_64F,point3D_dat); in icvFunc_ProjTrifocal()
256 double z = point3D_dat[2]; in icvFunc_ProjTrifocal()
257 cvmSet(resFunc,currMatr*numPoints*2 + currPoint*2, 0,point3D_dat[0]/z); in icvFunc_ProjTrifocal()
258 cvmSet(resFunc,currMatr*numPoints*2 + currPoint*2+1,0,point3D_dat[1]/z); in icvFunc_ProjTrifocal()
Dcvlevmarprojbandle.cpp855 double point3D_dat[3]; in icvReconstructPoints4DStatus() local
856 point3D = cvMat(3,1,CV_64F,point3D_dat); in icvReconstructPoints4DStatus()
868 double w = point3D_dat[2]; in icvReconstructPoints4DStatus()
869 double x = point3D_dat[0] / w; in icvReconstructPoints4DStatus()
870 double y = point3D_dat[1] / w; in icvReconstructPoints4DStatus()
934 double point3D_dat[3]; in icvProjPointsStatusFunc() local
936 point3D = cvMat(3,1,CV_64F,point3D_dat); in icvProjPointsStatusFunc()
974 double w = point3D_dat[2]; in icvProjPointsStatusFunc()
975 cvmSet(projPoints[currImage],0,currVisPoint,point3D_dat[0]/w); in icvProjPointsStatusFunc()
976 cvmSet(projPoints[currImage],1,currVisPoint,point3D_dat[1]/w); in icvProjPointsStatusFunc()
[all …]
Dcvtrifocal.cpp2175 double point3D_dat[4]; in icvReconstructPointsFor3View() local
2176 point3D = cvMat(4,1,CV_64F,point3D_dat); in icvReconstructPointsFor3View()
2186 point3D_dat[0] = cvmGet(points4D,0,i)/W; in icvReconstructPointsFor3View()
2187 point3D_dat[1] = cvmGet(points4D,1,i)/W; in icvReconstructPointsFor3View()
2188 point3D_dat[2] = cvmGet(points4D,2,i)/W; in icvReconstructPointsFor3View()
2189 point3D_dat[3] = 1; in icvReconstructPointsFor3View()
2314 double point3D_dat[4];
2315 point3D = cvMat(4,1,CV_64F,point3D_dat);
2325 point3D_dat[0] = cvmGet(points3D,0,i)/W;
2326 point3D_dat[1] = cvmGet(points3D,1,i)/W;
[all …]