写真の右半分を左半分にミラーリングする python 関数を作成しようとしています。これまでのところ、このコードはありますが、逆の方法で機能します (L から R にミラーリングされます)。いくつかの単純な変更である必要があることはわかっていますが、今はブロックがあるようです。どんな助けでも感謝します。
def mirrorVertical(source):
mirrorPoint = getWidth(source) / 2
width = getWidth(source)
for y in range(0,getHeight(source)):
for x in range(0,mirrorPoint):
leftPixel = getPixel(source,x,y)
rightPixel = getPixel(source,width - x - 1,y)
color = getColor(leftPixel)
setColor(rightPixel,color)