Ask Your Question

Ecoste's profile - activity

2018-09-24 12:16:07 -0600 marked best answer 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?

2018-09-24 12:16:07 -0600 received badge  Scholar (source)
2018-09-24 12:07:51 -0600 asked a question Why doesn't splitting by HSV and then merging into BGR produce the same result?

Why doesn't splitting by HSV and then merging into BGR produce the same result? Just the frame looks like: h, s, v =