Skip to content

Instantly share code, notes, and snippets.

@qmaruf
Created August 14, 2014 05:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qmaruf/c61cffb83d4e998457a6 to your computer and use it in GitHub Desktop.
Save qmaruf/c61cffb83d4e998457a6 to your computer and use it in GitHub Desktop.
matlab: Display image in separate window
im1 = imread(file1);
im2 = imread(file2);
imshow(im1);
figure, imshow(im2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment