Hello,
i’m new to sentinelhub API and I would like to ask question regard the script in the documentation.
when I plot image it has variable of factor ,e.g:
image = true_color_imgsg0]
print(f'Image type: {image.dtype}')
# plot function
# factor 1/255 to scale between 0-1
# factor 3.5 to increase brightness
plot_image(image, factor=3.5/255, clip_range=(0,1))
(factor=3.5/255).
Why do we have this part? what does it do?
Best,