Searched refs:v_double (Results 1 – 3 of 3) sorted by relevance
53 double v_double; in random_int_in_range() local62 v_double = ((double)start) + (((double)rand ())/RAND_MAX) * gap; in random_int_in_range()63 if (v_double < 0.0) in random_int_in_range()64 v = (v_double - 0.5); in random_int_in_range()66 v = (v_double + 0.5); in random_int_in_range()
26 void Mat_to_vector_double(Mat& mat, std::vector<double>& v_double) in Mat_to_vector_double() argument28 v_double.clear(); in Mat_to_vector_double()30 v_double = (std::vector<double>) mat; in Mat_to_vector_double()33 void vector_double_to_Mat(std::vector<double>& v_double, Mat& mat) in vector_double_to_Mat() argument35 mat = Mat(v_double, true); in vector_double_to_Mat()
7 void Mat_to_vector_double(cv::Mat& mat, std::vector<double>& v_double);8 void vector_double_to_Mat(std::vector<double>& v_double, cv::Mat& mat);