I want to edit pictures and i need the Hue Values. But when i use cv2.cvtColor with, cv2.COLOR_BGR2HSV or cv2.COLOR_BGR2HSV_FULL, i get a value range for hue from 0-179 or from 0-255. So i lose information about the image. If i convert the image for example in matlab, i get a double range from 0-1, so i don't lose information about the image.
I tried to read the image with cv2.imread and the flags= cv2.IMREAD_ANYDEPTH, but then i can't use the cv2.COLOR_BGR2HSV_FULL convert function...