Lines Matching refs:dst_row
95 Point3_<short> *dst_row = dst.ptr<Point3_<short> >(dy + y); in feed() local
102 dst_row[dx + x] = src_row[x]; in feed()
147 Point3_<short>* dst_row = dst.ptr<Point3_<short> >(dy + y); in feed() local
153 dst_row[dx + x].x += static_cast<short>(src_row[x].x * weight_row[x]); in feed()
154 dst_row[dx + x].y += static_cast<short>(src_row[x].y * weight_row[x]); in feed()
155 dst_row[dx + x].z += static_cast<short>(src_row[x].z * weight_row[x]); in feed()
385 Point3_<short>* dst_row = _dst_pyr_laplace.ptr<Point3_<short> >(y); in feed() local
391 dst_row[x].x += static_cast<short>(src_row[x].x * weight_row[x]); in feed()
392 dst_row[x].y += static_cast<short>(src_row[x].y * weight_row[x]); in feed()
393 dst_row[x].z += static_cast<short>(src_row[x].z * weight_row[x]); in feed()
403 Point3_<short>* dst_row = _dst_pyr_laplace.ptr<Point3_<short> >(y); in feed() local
409 dst_row[x].x += short((src_row[x].x * weight_row[x]) >> 8); in feed()
410 dst_row[x].y += short((src_row[x].y * weight_row[x]) >> 8); in feed()
411 dst_row[x].z += short((src_row[x].z * weight_row[x]) >> 8); in feed()