Home
last modified time | relevance | path

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

/external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
DCsvReader.cpp47 cv::Point3f tmp_p; in readPLY() local
48 tmp_p.x = (float)StringToInt(x); in readPLY()
49 tmp_p.y = (float)StringToInt(y); in readPLY()
50 tmp_p.z = (float)StringToInt(z); in readPLY()
51 list_vertex.push_back(tmp_p); in readPLY()
DPnPProblem.cpp27 cv::Point3f tmp_p; in CROSS() local
28 tmp_p.x = v1.y*v2.z - v1.z*v2.y; in CROSS()
29 tmp_p.y = v1.z*v2.x - v1.x*v2.z; in CROSS()
30 tmp_p.z = v1.x*v2.y - v1.y*v2.x; in CROSS()
31 return tmp_p; in CROSS()
41 cv::Point3f tmp_p; in SUB() local
42 tmp_p.x = v1.x - v2.x; in SUB()
43 tmp_p.y = v1.y - v2.y; in SUB()
44 tmp_p.z = v1.z - v2.z; in SUB()
45 return tmp_p; in SUB()