Searched refs:wstep (Results 1 – 4 of 4) sorted by relevance
/external/opencv3/modules/core/src/ |
D | lapack.cpp | 674 SVBkSb( int m, int n, const float* w, size_t wstep, in SVBkSb() argument 680 SVBkSbImpl_(m, n, w, wstep ? (int)(wstep/sizeof(w[0])) : 1, in SVBkSb() 689 SVBkSb( int m, int n, const double* w, size_t wstep, in SVBkSb() argument 695 SVBkSbImpl_(m, n, w, wstep ? (int)(wstep/sizeof(w[0])) : 1, in SVBkSb() 1450 size_t wstep = w.rows == 1 ? (size_t)esz : w.cols == 1 ? (size_t)w.step : (size_t)w.step + esz; in backSubst() local 1460 SVBkSb(m, n, w.ptr<float>(), wstep, u.ptr<float>(), u.step, false, in backSubst() 1464 SVBkSb(m, n, w.ptr<double>(), wstep, u.ptr<double>(), u.step, false, in backSubst()
|
/external/opencv3/modules/calib3d/test/ |
D | test_fundam.cpp | 423 int wstep = dstep2*(ddims - 1); in test_convertHomogeneous() local 430 d[wstep] = 1; in test_convertHomogeneous() 444 int wstep = sstep2*(sdims - 1); in test_convertHomogeneous() local 448 double w = s[wstep]; in test_convertHomogeneous()
|
/external/opencv/ml/src/ |
D | mlboost.cpp | 1279 int wstep = 0; in predict() local 1319 wstep = CV_IS_MAT_CONT(weak_responses->type) ? 1 : weak_responses->step/sizeof(float); in predict() 1422 weak_responses->data.fl[i*wstep] = (float)val; in predict()
|
/external/opencv3/apps/traincascade/ |
D | old_ml_boost.cpp | 1611 int wstep = 0; in predict() local 1650 wstep = CV_IS_MAT_CONT(weak_responses->type) ? 1 : weak_responses->step/sizeof(float); in predict() 1811 weak_responses->data.fl[i*wstep] = (float)node->value; in predict()
|