Home | History | Annotate | Download | only in cpp

Lines Matching refs:ptrDst

171                     uchar* ptrDst = image.ptr(row) + x * 3 + 2;//+2 -> Red
172 for (int col = 0; col < min(pointSize, image.cols - x); col++, ptrDst+=3)
174 *ptrDst = 255;
190 uchar* ptrDst = image.ptr(row);
195 *ptrDst = val; ptrDst++;
196 *ptrDst = val; ptrDst++;
197 *ptrDst = val; ptrDst++;
204 uchar* ptrDst = image.ptr(row) + g_closedDepthPoint[1] * 3 + 2;//+2 -> Red
205 for (int col = 0; col < min(pointSize, image.cols - g_closedDepthPoint[1]); col++, ptrDst+=3)
207 *ptrDst = 255;
216 uchar* ptrDst = image.ptr(row);
218 for (int col = 0; col < ir.cols; col++, ptrSrc++, ptrDst++)
220 *ptrDst = (uchar) ((*ptrSrc) >> 2);
238 uchar* ptrDst = image.ptr(row);
244 *ptrDst = 0; ptrDst++;
245 *ptrDst = 0; ptrDst++;
246 *ptrDst = 0; ptrDst++;
251 *ptrDst = val; ptrDst++;
252 *ptrDst = val; ptrDst++;
253 *ptrDst = val; ptrDst++;
261 uchar* ptrDst = image.ptr(row) + g_closedDepthPoint[1] * 3 + 2;//+2 -> Red
262 for (int col = 0; col < min(pointSize, image.cols - g_closedDepthPoint[1]); col++, ptrDst+=3)
264 *ptrDst = 255;
273 uchar* ptrDst = image.ptr(row);
275 for (int col = 0; col < depth.cols; col++, ptrSrc++, ptrDst++)
278 *ptrDst = 0;
280 *ptrDst = (uchar) ((*ptrSrc) >> 2);