Why doesn't splitting by HSV and then merging into BGR produce the same result?
Just the frame looks like:
h, s, v = cv2.split(frame)
frame = cv2.merge([h, s, v])
frame = cv2.cvtColor(frame, cv2.COLOR_HSV2BGR)
However when you split by hsv and then merge it back it looks like:
Why? Shouldn't they be the same?