"PIL Image / opencv"의 두 판 사이의 차이

ph
이동: 둘러보기, 검색
잔글 (→‎links)
 
9번째 줄: 9번째 줄:
 
background.show()
 
background.show()
 
</source >
 
</source >
 +
[https://stackoverflow.com/a/5324782/766330]
  
 
= opencv =
 
= opencv =
 
== links ==
 
== links ==
 
[https://pythonprogramming.net/drawing-writing-python-opencv-tutorial/ tutorial]
 
[https://pythonprogramming.net/drawing-writing-python-opencv-tutorial/ tutorial]

2019년 5월 13일 (월) 17:06 기준 최신판

transparent image paste

import Image

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

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

[1]

opencv

links

tutorial