HomeSort by relevance Sort by last modified time
    Searched full:imgpt0 (Results 1 - 2 of 2) sorted by null

  /external/opencv3/samples/cpp/
3calibration.cpp 66 const vector<vector<Point2f> >& imgpt0 = c == 1 ? imagePoints1 : c == 2 ? imagePoints2 : imagePoints3; local
69 for( i = 0; i < (int)imgpt0.size(); i++ )
70 if( !imgpt0[i].empty() )
72 imgpt.push_back(imgpt0[i]);
73 N += (int)imgpt0[i].size();
114 const vector<vector<Point2f> >& imgpt0 = c == 2 ? imagePoints2 : imagePoints3; local
120 for( i = 0; i < (int)std::min(imagePoints1.size(), imgpt0.size()); i++ )
121 if( !imagePoints1.empty() && !imgpt0[i].empty() )
124 imgpt_right.push_back(imgpt0[i]);
125 N += (int)imgpt0[i].size()
    [all...]
  /external/opencv3/modules/python/test/
test.py 87 imgpt0, jac0 = cv2.projectPoints(objpt, np.zeros(3), np.zeros(3), np.eye(3), np.float64([]))
89 self.assertEqual(imgpt0.shape, (objpt.shape[0], 1, 2))
90 self.assertEqual(imgpt1.shape, imgpt0.shape)

Completed in 411 milliseconds