Guest User

Untitled

a guest
May 20th, 2020
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. arma::Mat<unsigned char> matrix;
  2. data::ImageInfo info;
  3. data::Load("test_image.png", matrix, info, false);
  4. cout<<matrix<<endl;
  5. for (size_t i = 0; i < matrix.n_elem; ++i)
  6. {
  7. cout<<matrix[i]<<",";
  8. }
Add Comment
Please, Sign In to add comment