I am using Sentinel-2 data for Satellite Image Analysis. The code can be viewed here.
The problem is while plotting the RGB composite image. "To plot RGB composite images, you will plot the red, green and blue bands, which are bands 4, 3 and 2, respectively. The indices for red band = 3, green band = 2 and blue band = 1." The supporting code for this is-
rgb = ep.plot_rgb( arr = stacked_s2_sentinel_img, rgb = (1, 2, 3), figsize =(20, 10) #, title = titles )
plt.show()
However, this results into a black and white instead of a colored image (as can be viewed in the Jupyter notebook).
What's going wrong?