私は2つの写真を織り交ぜようとしています。
写真1 写真2 こちらへ
def interWeave(pic, picture):
w=getWidth(pic)
h=getHeight(pic)
newPic=makeEmptyPicture(w,h)
for x in range (0,w):
for y in range (0,h):
p=getPixel(pic,x,y)
p2=getPixel(picture,x,y)
newPxl=getPixel(newPic,x,y)
if (x>=0 and x<20) or (x>=40 and x<60)or (x>=80 and x<=100):
color = getColor(p)
else:
color=getColor(p2)
setColor(newPxl, color)
return (newPic)
しかし、私はこれを取得します:
私が間違っていることを知っている人はいますか?