For a given image, if I read it using imread, will the values in the three channels be in the range of [0,255]? If I transfer this image using rgb2gray, will the value be in the range of [0,1]?
based on the skimage doc, the calculation of rgb2gray is
Y = 0.2125 R + 0.7154 G + 0.0721 B
It seems to me that it cannot guarantee the result of rgb2gray will always belong to [0,1]. This is a bit confused.