PIL Image / opencv

ph
Admin (토론 | 기여)님의 2019년 5월 13일 (월) 17:06 판 (→‎links)
이동: 둘러보기, 검색

transparent image paste

import Image

background = Image.open("test1.png")
foreground = Image.open("test2.png")

background.paste(foreground, (0, 0), foreground)
background.show()

opencv

links

tutorial