Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. picture = imread(..);
  2.  
  3. while(true) {
  4. picture = doStuffWithPicture(picture);
  5. if (keyPressed("N") {
  6. break;
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement