HomeSort by relevance Sort by last modified time
    Searched refs:test_mat (Results 1 - 19 of 19) sorted by null

  /external/opencv3/modules/calib3d/test/
test_undistort.cpp 115 Mat& _a0 = test_mat[INPUT][0];
130 const Mat& src = test_mat[INPUT][0];
131 Mat& dst = test_mat[REF_OUTPUT][0];
132 Mat& test_output = test_mat[OUTPUT][0];
270 int dist_size = test_mat[INPUT][2].cols > test_mat[INPUT][2].rows ? test_mat[INPUT][2].cols : test_mat[INPUT][2].rows;
273 vector<double> proj(test_mat[INPUT][4].cols * test_mat[INPUT][4].rows)
    [all...]
test_fundam.cpp 666 v2m_jac = test_mat[OUTPUT][1];
667 m2v_jac = test_mat[OUTPUT][3];
672 CvMat _input = test_mat[INPUT][0], _output = test_mat[OUTPUT][0], _output2 = test_mat[OUTPUT][2];
678 cv::Mat v = test_mat[INPUT][0], M = test_mat[OUTPUT][0], v2 = test_mat[OUTPUT][2];
687 cv::Mat J1 = test_mat[OUTPUT][1], J2 = test_mat[OUTPUT][3]
    [all...]
test_modelest.cpp 211 test_mat[OUTPUT][0].at<uchar>(0) = checkSubsetResult;
212 test_mat[REF_OUTPUT][0].at<uchar>(0) = test_case_idx < generalPositionsCount || usedPointsCount <= 2;
218 Mat input = test_mat[INPUT][0].clone();
test_cameracalibration.cpp 190 v2m_jac = &test_mat[OUTPUT][1];
191 m2v_jac = &test_mat[OUTPUT][3];
194 cvProjectPoints2( &test_mat[INPUT][0], &test_mat[OUTPUT][0], v2m_jac );
195 cvProjectPoints2( &test_mat[OUTPUT][0], &test_mat[OUTPUT][2], m2v_jac );
201 const CvMat* vec = &test_mat[INPUT][0];
202 CvMat* m = &test_mat[REF_OUTPUT][0];
203 CvMat* vec2 = &test_mat[REF_OUTPUT][2];
209 v2m_jac = &test_mat[REF_OUTPUT][1]
    [all...]
  /external/opencv3/modules/video/test/
test_accum.cpp 94 return test_mat[INPUT_OUTPUT][0].depth() < CV_64F ||
95 test_mat[INPUT][0].depth() == CV_32F ? FLT_EPSILON*100 : DBL_EPSILON*1000;
118 const Mat& src = test_mat[INPUT][0];
119 Mat& dst = test_mat[REF_INPUT_OUTPUT][0];
120 const Mat& mask = test_array[MASK][0] ? test_mat[MASK][0] : Mat();
151 const Mat& src = test_mat[INPUT][0];
152 Mat& dst = test_mat[REF_INPUT_OUTPUT][0];
153 const Mat& mask = test_array[MASK][0] ? test_mat[MASK][0] : Mat();
189 const Mat& src1 = test_mat[INPUT][0];
190 const Mat& src2 = test_mat[INPUT][1]
    [all...]
  /external/opencv3/modules/core/test/
test_math.cpp 47 return test_mat[i][j].depth() == CV_32F ? FLT_EPSILON*128 : DBL_EPSILON*1024;
129 int depth = test_mat[i][j].depth();
157 if( fabs(power-1./3) <= DBL_EPSILON && test_mat[INPUT][0].depth() == CV_32F )
159 Mat a = test_mat[INPUT][0], b = test_mat[OUTPUT][0];
175 Mat& a = test_mat[INPUT][0];
176 Mat& b = test_mat[OUTPUT][0];
215 const Mat& a = test_mat[INPUT][0];
216 Mat& b = test_mat[REF_OUTPUT][0];
425 int input_depth = test_mat[INPUT][0].depth()
    [all...]
test_dxt.cpp 651 int in_type = test_mat[INPUT][0].type();
652 int out_type = test_mat[OUTPUT][0].type();
655 cvtest::fixCCS( test_mat[INPUT][0], test_mat[OUTPUT][0].cols, flags );
658 cvtest::copy( test_mat[INPUT][test_case_idx & (int)spectrum_mode],
659 temp_dst ? test_mat[TEMP][1] :
660 in_type == out_type ? test_mat[OUTPUT][0] :
661 test_mat[TEMP][0] );
686 Mat& dst = temp_dst ? test_mat[TEMP][1] : test_mat[OUTPUT][0]
    [all...]
test_io.cpp 116 Mat test_mat(cvtest::randInt(rng)%30+1, cvtest::randInt(rng)%30+1, CV_MAKETYPE(depth, cn));
118 rng0.fill(test_mat, CV_RAND_UNI, Scalar::all(ranges[depth][0]), Scalar::all(ranges[depth][1]));
121 exp(test_mat, test_mat);
122 Mat test_mat_scale(test_mat.size(), test_mat.type());
124 multiply(test_mat, test_mat_scale, test_mat);
127 CvSeq* seq = cvCreateSeq(test_mat.type(), (int)sizeof(CvSeq),
128 (int)test_mat.elemSize(), storage)
173 fs << "test_mat" << test_mat; local
    [all...]
  /external/opencv3/modules/imgproc/test/
test_imgwarp.cpp 125 Mat& img = test_mat[INPUT][0];
135 if( test_mat[INPUT_OUTPUT][0].cols >= img.cols &&
136 test_mat[INPUT_OUTPUT][0].rows >= img.rows )
269 int depth = test_mat[INPUT][0].depth();
276 CvMat _src = test_mat[INPUT][0], _dst = test_mat[REF_INPUT_OUTPUT][0];
494 CvMat mtx = test_mat[INPUT][1];
501 int depth = test_mat[INPUT][0].depth();
510 const Mat& src = test_mat[INPUT][0];
511 const Mat& dst = test_mat[INPUT_OUTPUT][0]
    [all...]
test_filter.cpp 158 if( inplace && test_mat[INPUT][0].type() == test_mat[OUTPUT][0].type())
159 cvtest::copy( test_mat[INPUT][0], test_mat[OUTPUT][0] );
214 return test_mat[INPUT][0].depth() < CV_32F ||
231 const uchar* src = test_mat[INPUT][1].ptr();
232 int srcstep = (int)test_mat[INPUT][1].step;
257 Mat& src = test_mat[INPUT][0], &dst = test_mat[REF_OUTPUT][0];
416 int depth = test_mat[INPUT][0].depth()
    [all...]
test_moments.cpp 152 int depth = test_mat[INPUT][0].depth();
161 int cn = test_mat[INPUT][0].channels();
172 CvMoments* m = (CvMoments*)test_mat[OUTPUT][0].ptr<double>();
177 test_mat[INPUT][0].clone().copyTo(u);
205 Mat& src = test_mat[INPUT][0];
207 double* mdata = test_mat[REF_OUTPUT][0].ptr<double>();
317 double* a = test_mat[REF_OUTPUT][0].ptr<double>();
318 double* b = test_mat[OUTPUT][0].ptr<double>();
395 cvGetHuMoments( test_mat[INPUT][0].ptr<CvMoments>(),
396 test_mat[OUTPUT][0].ptr<CvHuMoments>() )
    [all...]
test_canny.cpp 110 Mat& src = test_mat[INPUT][0];
253 Mat src = test_mat[INPUT][0], dst = test_mat[REF_OUTPUT][0];
263 double err = cvtest::norm(test_mat[OUTPUT][0], test_mat[REF_OUTPUT][0], CV_L1);
274 nz0 = cvRound(cvtest::norm(test_mat[REF_OUTPUT][0], CV_L1)/255);
test_templmatch.cpp 128 if( test_mat[INPUT][1].depth() == CV_8U ||
129 (method >= CV_TM_CCOEFF && test_mat[INPUT][1].cols*test_mat[INPUT][1].rows <= 2) )
312 CvMat _input = test_mat[INPUT][0], _templ = test_mat[INPUT][1];
313 CvMat _output = test_mat[REF_OUTPUT][0];
319 cvWrite( fs, "image", &test_mat[INPUT][0] );
320 cvWrite( fs, "template", &test_mat[INPUT][1] );
321 cvWrite( fs, "ref", &test_mat[REF_OUTPUT][0] );
322 cvWrite( fs, "opencv", &test_mat[OUTPUT][0] )
    [all...]
test_distancetransform.cpp 112 Size sz = test_mat[INPUT][0].size();
134 Mat& mat = test_mat[INPUT][0];
279 CvMat _input = test_mat[INPUT][0], _output = test_mat[REF_OUTPUT][0];
test_color.cpp 156 cvtest::copy( test_mat[INPUT][0], test_mat[OUTPUT][0] );
184 convert_forward( test_mat[INPUT][0], test_mat[REF_OUTPUT][0] );
185 convert_backward( test_mat[INPUT][0], test_mat[REF_OUTPUT][0],
186 test_mat[REF_OUTPUT][1] );
187 int depth = test_mat[REF_OUTPUT][0].depth();
190 for( int y = 0; y < test_mat[REF_OUTPUT][0].rows; y++ )
192 uchar* h0 = test_mat[REF_OUTPUT][0].ptr(y)
    [all...]
test_floodfill.cpp 193 double* odata = test_mat[OUTPUT][0].ptr<double>();
516 double* comp = test_mat[REF_OUTPUT][0].ptr<double>();
517 CvMat _input = test_mat[REF_INPUT_OUTPUT][0];
518 CvMat _mask = test_mat[REF_INPUT_OUTPUT][1];
test_thresh.cpp 316 test_threshold( test_mat[INPUT][0], test_mat[REF_OUTPUT][0],
  /external/opencv3/modules/ts/src/
ts_arrtest.cpp 210 test_mat.resize(test_array.size());
214 test_mat[i].resize(sizei);
218 test_mat[i][j] = cv::cvarrToMat(arr);
219 if( !test_mat[i][j].empty() )
220 fill_array( test_case_idx, (int)i, (int)j, test_mat[i][j] );
257 cvtest::copy( test_mat[INPUT_OUTPUT][j], arr, Mat() );
306 code = cmpEps2(ts, test_mat[i0][j], test_mat[i1][j], err_level, element_wise_relative_error, arr_names[i0]);
317 const Mat& arr = test_mat[i0][i1];
  /external/opencv3/modules/ts/include/opencv2/
ts.hpp 469 vector<vector<Mat> > test_mat; member in class:cvtest::ArrayTest

Completed in 67 milliseconds