How to reconstruct an YCbCr image from their componets Y, Cb and Cr in python?

How to reconstruct an YCbCr image from their componets Y, Cb and Cr in python?

should be as simple as

ycbcr = cv2.merge([Y,Cb,Cr])

docs

Thank you Sir for the reply…