Home | History | Annotate | Download | only in src

Lines Matching defs:src_row

94         const Point3_<short> *src_row = img.ptr<Point3_<short> >(y);
102 dst_row[dx + x] = src_row[x];
146 const Point3_<short>* src_row = img.ptr<Point3_<short> >(y);
153 dst_row[dx + x].x += static_cast<short>(src_row[x].x * weight_row[x]);
154 dst_row[dx + x].y += static_cast<short>(src_row[x].y * weight_row[x]);
155 dst_row[dx + x].z += static_cast<short>(src_row[x].z * weight_row[x]);
384 const Point3_<short>* src_row = _src_pyr_laplace.ptr<Point3_<short> >(y);
391 dst_row[x].x += static_cast<short>(src_row[x].x * weight_row[x]);
392 dst_row[x].y += static_cast<short>(src_row[x].y * weight_row[x]);
393 dst_row[x].z += static_cast<short>(src_row[x].z * weight_row[x]);
402 const Point3_<short>* src_row = _src_pyr_laplace.ptr<Point3_<short> >(y);
409 dst_row[x].x += short((src_row[x].x * weight_row[x]) >> 8);
410 dst_row[x].y += short((src_row[x].y * weight_row[x]) >> 8);
411 dst_row[x].z += short((src_row[x].z * weight_row[x]) >> 8);