-
-
Save stanlee321/701d9b14267b55564cdd058c450e5ede to your computer and use it in GitHub Desktop.
Two images side-by-side using matplotlib (pylab)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import matplotlib.pyplot as plt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| f = plt.figure() | |
| f.add_subplot(1,2, 1) | |
| plt.imshow(np.rot90(imgLr,2)) | |
| f.add_subplot(1,2, 2) | |
| plt.imshow(np.rot90(imgRr,2)) | |
| plt.show(block=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment