Guest User

Untitled

a guest
Jul 16th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. for (int row = 0; row < iMat.rows; ++row)
  2. {
  3. auto *pVal = iMat.ptr(row);
  4. for (int col = 0; col < iMat.cols; col++)
  5. {
  6. auto val = *pVal;
  7. }
  8. }
Add Comment
Please, Sign In to add comment