Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Why doesn't splitting by HSV and then merging into BGR produce the same result?

Just the frame looks like: image description

 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:

image description

Why? Shouldn't they be the same?