Home | History | Annotate | Download | only in src

Lines Matching full:cost

320                                             Mat& disp, Mat& cost, StereoBMParams& state,
349 int coststep = cost.data ? (int)(cost.step/sizeof(costbuf)) : 0;
404 short* costptr = cost.data ? cost.ptr<short>() + lofs + x : &costbuf;
569 Mat& disp, Mat& cost, const StereoBMParams& state,
607 int coststep = cost.data ? (int)(cost.step/sizeof(costbuf)) : 0;
670 int* costptr = cost.data ? cost.ptr<int>() + lofs + x : &costbuf;
958 cost = &_cost;
990 Mat cost_i = state->disp12MaxDiff >= 0 ? cost->rowRange(row0, row1) : Mat();
1016 Mat* disp, *slidingSumBuf, *cost;
1100 cost.create( left0.size(), CV_16S );
1165 slidingSumBuf, cost));
1251 Mat preFilteredImg0, preFilteredImg1, cost, dispbuf;