Re: [Oiio-dev] Shuffle channels of two images

2020-02-13 Thread Jovce Malakovski
Thanks Larry, that worked. On Thu, Feb 13, 2020 at 7:48 PM Larry Gritz wrote: > I think something like: > > oiiotool A.exr --ch R B.exr --ch B --chappend A.exr --ch G > --chappend --chnames R,G,B -o mix.exr > > To break down what that means, > > * read A, take just its R channel >

Re: [Oiio-dev] Shuffle channels of two images

2020-02-13 Thread Larry Gritz
I think something like: oiiotool A.exr --ch R B.exr --ch B --chappend A.exr --ch G --chappend --chnames R,G,B -o mix.exr To break down what that means, * read A, take just its R channel * read B, take just its G channel * Append channels of the the top two images,

[Oiio-dev] Shuffle channels of two images

2020-02-13 Thread Jovce Malakovski
Hi, Is it possible with the command line tool (oiiotool) to shuffle the rgb channels like R from image A G from image B B from image A? The current command --ch supports swapping channels of a single image, but is it possible with two images? Or is there some other command that can do this?