Guest User

Untitled

a guest
Jun 25th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. unsigned int column;
  2. unsigned int row;
  3. int pixel_value;
  4. int img_height = image.rows;
  5. int img_width = image.cols;
  6.  
  7. for (row = 0; row <= img_height; row++)
  8. {
  9. for (column = 0; column <= img_width; column++)
  10. }
  11. pixel_value = grey_image.at<uchar>(row, column);
  12. }
  13. }
Add Comment
Please, Sign In to add comment