#include "converters.h" #ifdef DEBUG #include #define MODULE_LOG_TAG "OpenCV.converters" #define LOGD(...) ((void)__android_log_print(ANDROID_LOG_DEBUG, MODULE_LOG_TAG, __VA_ARGS__)) #else //DEBUG #define LOGD(...) #endif //DEBUG using namespace cv; #define CHECK_MAT(cond) if(!(cond)){ LOGD("FAILED: " #cond); return; } // vector_int void Mat_to_vector_int(Mat& mat, vector& v_int) { v_int.clear(); CHECK_MAT(mat.type()==CV_32SC1 && mat.cols==1); v_int = (vector) mat; } void vector_int_to_Mat(vector& v_int, Mat& mat) { mat = Mat(v_int, true); } //vector_double void Mat_to_vector_double(Mat& mat, vector& v_double) { v_double.clear(); CHECK_MAT(mat.type()==CV_64FC1 && mat.cols==1); v_double = (vector) mat; } void vector_double_to_Mat(vector& v_double, Mat& mat) { mat = Mat(v_double, true); } // vector_float void Mat_to_vector_float(Mat& mat, vector& v_float) { v_float.clear(); CHECK_MAT(mat.type()==CV_32FC1 && mat.cols==1); v_float = (vector) mat; } void vector_float_to_Mat(vector& v_float, Mat& mat) { mat = Mat(v_float, true); } //vector_uchar void Mat_to_vector_uchar(Mat& mat, vector& v_uchar) { v_uchar.clear(); CHECK_MAT(mat.type()==CV_8UC1 && mat.cols==1); v_uchar = (vector) mat; } void Mat_to_vector_char(Mat& mat, vector& v_char) { v_char.clear(); CHECK_MAT(mat.type()==CV_8SC1 && mat.cols==1); v_char = (vector) mat; } //vector_Rect void Mat_to_vector_Rect(Mat& mat, vector& v_rect) { v_rect.clear(); CHECK_MAT(mat.type()==CV_32SC4 && mat.cols==1); v_rect = (vector) mat; } void vector_Rect_to_Mat(vector& v_rect, Mat& mat) { mat = Mat(v_rect, true); } //vector_Point void Mat_to_vector_Point(Mat& mat, vector& v_point) { v_point.clear(); CHECK_MAT(mat.type()==CV_32SC2 && mat.cols==1); v_point = (vector) mat; } //vector_Point2f void Mat_to_vector_Point2f(Mat& mat, vector& v_point) { v_point.clear(); CHECK_MAT(mat.type()==CV_32FC2 && mat.cols==1); v_point = (vector) mat; } //vector_Point2d void Mat_to_vector_Point2d(Mat& mat, vector& v_point) { v_point.clear(); CHECK_MAT(mat.type()==CV_64FC2 && mat.cols==1); v_point = (vector) mat; } //vector_Point3i void Mat_to_vector_Point3i(Mat& mat, vector& v_point) { v_point.clear(); CHECK_MAT(mat.type()==CV_32SC3 && mat.cols==1); v_point = (vector) mat; } //vector_Point3f void Mat_to_vector_Point3f(Mat& mat, vector& v_point) { v_point.clear(); CHECK_MAT(mat.type()==CV_32FC3 && mat.cols==1); v_point = (vector) mat; } //vector_Point3d void Mat_to_vector_Point3d(Mat& mat, vector& v_point) { v_point.clear(); CHECK_MAT(mat.type()==CV_64FC3 && mat.cols==1); v_point = (vector) mat; } void vector_Point_to_Mat(vector& v_point, Mat& mat) { mat = Mat(v_point, true); } void vector_Point2f_to_Mat(vector& v_point, Mat& mat) { mat = Mat(v_point, true); } void vector_Point2d_to_Mat(vector& v_point, Mat& mat) { mat = Mat(v_point, true); } void vector_Point3i_to_Mat(vector& v_point, Mat& mat) { mat = Mat(v_point, true); } void vector_Point3f_to_Mat(vector& v_point, Mat& mat) { mat = Mat(v_point, true); } void vector_Point3d_to_Mat(vector& v_point, Mat& mat) { mat = Mat(v_point, true); } //vector_KeyPoint void Mat_to_vector_KeyPoint(Mat& mat, vector& v_kp) { v_kp.clear(); CHECK_MAT(mat.type()==CV_64FC(7) && mat.cols==1); for(int i=0; i v = mat.at< Vec >(i, 0); KeyPoint kp((float)v[0], (float)v[1], (float)v[2], (float)v[3], (float)v[4], (int)v[5], (int)v[6]); v_kp.push_back(kp); } return; } void vector_KeyPoint_to_Mat(vector& v_kp, Mat& mat) { int count = v_kp.size(); mat.create(count, 1, CV_64FC(7)); for(int i=0; i >(i, 0) = Vec(kp.pt.x, kp.pt.y, kp.size, kp.angle, kp.response, kp.octave, kp.class_id); } } //vector_Mat void Mat_to_vector_Mat(cv::Mat& mat, std::vector& v_mat) { v_mat.clear(); if(mat.type() == CV_32SC2 && mat.cols == 1) { for(int i=0; i a = mat.at< Vec >(i, 0); long long addr = (((long long)a[0])<<32) | a[1]; Mat& m = *( (Mat*) addr ); v_mat.push_back(m); } } else { LOGD("Mat_to_vector_Mat() FAILED: mat.type() == CV_32SC2 && mat.cols == 1"); } } void vector_Mat_to_Mat(std::vector& v_mat, cv::Mat& mat) { int count = v_mat.size(); mat.create(count, 1, CV_32SC2); for(int i=0; i >(i, 0) = Vec(addr>>32, addr&0xffffffff); } } //vector_DMatch void Mat_to_vector_DMatch(Mat& mat, vector& v_dm) { v_dm.clear(); CHECK_MAT(mat.type()==CV_64FC4 && mat.cols==1); for(int i=0; i v = mat.at< Vec >(i, 0); DMatch dm((int)v[0], (int)v[1], (int)v[2], (float)v[3]); v_dm.push_back(dm); } return; } void vector_DMatch_to_Mat(vector& v_dm, Mat& mat) { int count = v_dm.size(); mat.create(count, 1, CV_64FC4); for(int i=0; i >(i, 0) = Vec(dm.queryIdx, dm.trainIdx, dm.imgIdx, dm.distance); } }