使用 oiiotool 组合两个图像的图像通道

Combine image channels of two images using oiiotool

oiiotool 中有命令可以使用 --ch 命令交换图像的通道,如下所示:

oiiotool rgba.tif --ch R=B,G,B=R,A -o bgra.tif

我想问的是,是否有一个选项可以将两个图像加载到堆栈中,并将图像 A 的红色通道添加到图像 B 的绿色通道。

如果有人需要这里的答案是:

oiiotool A.exr --ch R  B.exr --ch B  --chappend  A.exr --ch G  --chappend  --chnames R,G,B  -o mix.exr

要分解这意味着什么,

* read A, take just its R channel
* read B, take just its G channel
* Append channels of the the top two images, yielding A.r,B.g on the top of the stack
* read A again, take just its B channel
* Append the channels of the top two images, now you have A.r,B.g,A.b
* Force new channel names R,G,B just in case they carry their old names or got confused
* Output to mix.exr