Lines Matching refs:Lstep
347 Nld_Step_Scalar_Invoker(cv::Mat& Ld, const cv::Mat& c, cv::Mat& Lstep, float _stepsize) in Nld_Step_Scalar_Invoker() argument
350 , _Lstep(&Lstep) in Nld_Step_Scalar_Invoker()
364 cv::Mat& Lstep = *_Lstep; in operator ()() local
375 float *dst = Lstep.ptr<float>(i); in operator ()()
377 for (int j = 1; j < Lstep.cols - 1; j++) in operator ()()
405 void nld_step_scalar(cv::Mat& Ld, const cv::Mat& c, cv::Mat& Lstep, float stepsize) { in nld_step_scalar() argument
407 …cv::parallel_for_(cv::Range(1, Lstep.rows - 1), Nld_Step_Scalar_Invoker(Ld, c, Lstep, stepsize), (… in nld_step_scalar()
410 float* dst = Lstep.ptr<float>(0); in nld_step_scalar()
417 for (int j = 1; j < Lstep.cols - 1; j++) { in nld_step_scalar()
424 dst = Lstep.ptr<float>(Lstep.rows - 1); in nld_step_scalar()
425 ccur = c.ptr<float>(Lstep.rows - 1); in nld_step_scalar()
426 cprv = c.ptr<float>(Lstep.rows - 2); in nld_step_scalar()
427 ldcur = Ld.ptr<float>(Lstep.rows - 1); in nld_step_scalar()
428 ldprv = Ld.ptr<float>(Lstep.rows - 2); in nld_step_scalar()
430 for (int j = 1; j < Lstep.cols - 1; j++) { in nld_step_scalar()
442 int r0 = Lstep.cols - 1; in nld_step_scalar()
443 int r1 = Lstep.cols - 2; in nld_step_scalar()
445 for (int i = 1; i < Lstep.rows - 1; i++) { in nld_step_scalar()
448 dst = Lstep.ptr<float>(i); in nld_step_scalar()
465 Ld += Lstep; in nld_step_scalar()