Home
last modified time | relevance | path

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

/external/opencv3/modules/features2d/misc/java/src/cpp/
Dfeatures2d_converters.cpp88 void Mat_to_vector_vector_DMatch(Mat& mat, std::vector< std::vector< DMatch > >& vv_dm) in Mat_to_vector_vector_DMatch() argument
97 vv_dm.push_back(vdm); in Mat_to_vector_vector_DMatch()
101 void vector_vector_DMatch_to_Mat(std::vector< std::vector< DMatch > >& vv_dm, Mat& mat) in vector_vector_DMatch_to_Mat() argument
104 vm.reserve( vv_dm.size() ); in vector_vector_DMatch_to_Mat()
105 for(size_t i=0; i<vv_dm.size(); i++) in vector_vector_DMatch_to_Mat()
108 vector_DMatch_to_Mat(vv_dm[i], m); in vector_vector_DMatch_to_Mat()
Dfeatures2d_converters.hpp18 void Mat_to_vector_vector_DMatch(cv::Mat& mat, std::vector< std::vector< cv::DMatch > >& vv_dm);
19 void vector_vector_DMatch_to_Mat(std::vector< std::vector< cv::DMatch > >& vv_dm, cv::Mat& mat);