Python Wand を使用して、次の ImageMagick コマンドを実装しようとしています。
convert red_image.png green_image.png write_mask.png -composite masked_composite.png
画像の例を次に示します。
ヒントはありますか?
更新: 誰かが疑問に思った場合の私の解決策は次のとおりです。注: エレガントではありませんが、機能します。
bash_command = "convert "+str(red_image.png)+" "+str(green_image.png)+" write_mask.png - composite "+str(red_image.png)+str(green_image.png)+".jpg"
os.system(bash_command)