Wahrscheinlich ist es so ähnlich:
convert input1.png input2.png -channel RGB \ -fx '(u[0]*u[0].a + u[1]*u[1].a) / (u[0].a + u[1].a)' \ output.png
Ich habe mehrere ähnliche Bilder, die ich machen möchte, aber nicht einheitlich. Jede Zone in Bildern sollte ein separates Gewicht haben, und das Gewicht wird in einem Alhpa-Kanal codiert (vollständig transparent - Nullgewicht, vollständig undurchsichtig - Einheitsgewicht).
Wie mache ich das von der Kommandozeile aus?
Wahrscheinlich ist es so ähnlich:
convert input1.png input2.png -channel RGB \ -fx '(u[0]*u[0].a + u[1]*u[1].a) / (u[0].a + u[1].a)' \ output.png