mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
18 lines
324 B
Python
18 lines
324 B
Python
import PikaCV as cv
|
|
import binascii
|
|
img = cv.Image()
|
|
img.read("test/assets/test.jpg")
|
|
cv.Converter.toRGB888(img)
|
|
|
|
Channel = img.split()
|
|
R = Channel[0]
|
|
G = Channel[1]
|
|
B = Channel[2]
|
|
|
|
img1 = cv.Image()
|
|
cv.Converter.toRGB888(img1)
|
|
img1.merge(R,G,B)
|
|
cv.Converter.toBMP(img1)
|
|
img1.write("test/out/merge.bmp")
|
|
|
|
print("Merge done") |