Lines Matching defs:row
219 const int& row, in write_pixel()
262 if( image.depth() == CV_8U ){ image.at<Vec3b>(row,col)[channel] = newValue; } in write_pixel() local
263 else if( image.depth() == CV_16U ){ image.at<Vec3s>(row,col)[channel] = newValue; } in write_pixel() local
264 else if( image.depth() == CV_16S ){ image.at<Vec3s>(row,col)[channel] = newValue; } in write_pixel() local
265 else if( image.depth() == CV_32S ){ image.at<Vec3i>(row,col)[channel] = newValue; } in write_pixel() local
266 else if( image.depth() == CV_32F ){ image.at<Vec3f>(row,col)[channel] = newValue; } in write_pixel() local
267 else if( image.depth() == CV_64F ){ image.at<Vec3d>(row,col)[channel] = newValue; } in write_pixel() local
274 …else if( image.depth() == CV_8U && channel < 4 ){ image.at<Vec3b>(row,col)[channel] = newValue;… in write_pixel() local
275 …else if( image.depth() == CV_16U && channel < 4 ){ image.at<Vec3s>(row,col)[channel] = newValue; … in write_pixel() local
276 …else if( image.depth() == CV_16S && channel < 4 ){ image.at<Vec3s>(row,col)[channel] = newValue; … in write_pixel() local
277 …else if( image.depth() == CV_32S && channel < 4 ){ image.at<Vec3i>(row,col)[channel] = newValue; … in write_pixel() local
278 …else if( image.depth() == CV_32F && channel < 4 ){ image.at<Vec3f>(row,col)[channel] = newValue; … in write_pixel() local
279 …else if( image.depth() == CV_64F && channel < 4 ){ image.at<Vec3d>(row,col)[channel] = newValue; … in write_pixel() local
285 if( image.depth() == CV_8U ){ image.at<Vec4b>(row,col)[channel] = newValue; } in write_pixel() local