Lines Matching defs:last_row
688 const int last_row = src.rows - 1;
699 parallel_for_(Range(1, last_row), body);
708 dx(last_row, x) = 0.5f * (src(last_row, x + 1) - src(last_row, x - 1));
709 dy(last_row, x) = 0.5f * (src(last_row, x) - src(last_row - 1, x));
713 for (int y = 1; y < last_row; ++y)
729 dx(last_row, 0) = 0.5f * (src(last_row, 1) - src(last_row, 0));
730 dy(last_row, 0) = 0.5f * (src(last_row, 0) - src(last_row - 1, 0));
732 dx(last_row, last_col) = 0.5f * (src(last_row, last_col) - src(last_row, last_col - 1));
733 dy(last_row, last_col) = 0.5f * (src(last_row, last_col) - src(last_row - 1, last_col));
774 const int last_row = src.rows - 1;
785 parallel_for_(Range(0, last_row), body);
791 dx(last_row, x) = src(last_row, x + 1) - src(last_row, x);
792 dy(last_row, x) = 0.0f;
796 for (int y = 0; y < last_row; ++y)
802 dx(last_row, last_col) = 0.0f;
803 dy(last_row, last_col) = 0.0f;