merge

Description

Creates one multichannel array out of several single-channel ones.

Signature

cv2.merge(mv[, dst]) → dst

Parameters

Explanation

This function merges separate single-channel arrays into a multi-channel array: \(\text{dst}(I)_c = \text{mv}[c](I)\). This is most commonly used to merge separate image planes for B, G, and R channels into a color image.

Notes


References

Created with OpenCV 4.4.0