Created
March 30, 2020 07:32
-
-
Save soumya997/63d88c915f833c982c553935b3f69a22 to your computer and use it in GitHub Desktop.
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, axes = plt.subplots(1,3, figsize = (15,15)) | |
| list = [hsv_img_1,hsv_img_2,hsv_img_3] | |
| i = 0 | |
| for ax in axes: | |
| ax.imshow(list[i]) | |
| i+=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment