Lines Matching refs:srow
195 const _Tp* srow = cloud.ptr<_Tp>(y); in filterNanCopy() local
196 const _Tp* send = srow + cloud.cols * s_chs; in filterNanCopy()
198 for (; srow != send; srow += s_chs) in filterNanCopy()
199 if (!isNan(srow)) in filterNanCopy()
200 points->SetPoint(total++, srow); in filterNanCopy()
217 const unsigned char* srow = cloud_colors.ptr<unsigned char>(y); in filterNanColorsCopy() local
218 const unsigned char* send = srow + cloud_colors.cols * s_chs; in filterNanColorsCopy()
223 for (; srow != send; srow += s_chs, mrow += m_chs) in filterNanColorsCopy()
225 *pos++ = Vec3b(srow[0], srow[0], srow[0]); in filterNanColorsCopy()
228 for (; srow != send; srow += s_chs, mrow += m_chs) in filterNanColorsCopy()
230 *pos++ = Vec3b(srow[2], srow[1], srow[0]); in filterNanColorsCopy()
255 const _Tn* srow = cloud_normals.ptr<_Tn>(y); in filterNanNormalsCopy() local
256 const _Tn* send = srow + cloud_normals.cols * s_chs; in filterNanNormalsCopy()
260 for (; srow != send; srow += s_chs, mrow += m_chs) in filterNanNormalsCopy()
262 normals->SetTuple(pos++, srow); in filterNanNormalsCopy()
278 const Vec2* srow = _tcoords.ptr<Vec2>(y); in filterNanTCoordsCopy() local
279 const Vec2* send = srow + _tcoords.cols; in filterNanTCoordsCopy()
282 for (; srow != send; ++srow, mrow += mask.channels()) in filterNanTCoordsCopy()
284 tcoords->SetTuple(pos++, srow->val); in filterNanTCoordsCopy()