-
-
Save amankharwal/d9f271c36e888b7854e4c3534bfc9ab2 to your computer and use it in GitHub Desktop.
This file contains 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
rgb = ep.plot_rgb(arr_st, | |
rgb=(3,2,1), | |
figsize=(10, 16), | |
# title='RGB Composite Image' | |
) | |
plt.show() | |
ep.plot_rgb( | |
arr_st, | |
rgb=(3, 2, 1), | |
stretch=True, | |
str_clip=0.2, | |
figsize=(10, 16), | |
# title="RGB Composite Image with Stretch Applied", | |
) | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment