As far as I know, all pixel values of a hdr image should be less than 1 and greater than 0.
However, I tried to read hdr images and checked pixel values of one of images:
train_set_y_original = [cv.imread(fn, -1) for fn in train_img_folder]
print(train_set_y_original[20])
But, some of values are greater than 1.
I tried both
print(train_set_y_original[20].astype('float32')
and
print(train_set_y_original[20].astype('float64'))
The results were same.
I don't understand why I got this result.
I need to make labels of hdr images so I need unchanged pixel values of a hdr image.