yuv

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
RetroJ
Posts: 108
Joined: 2006-10-25T08:12:50-07:00

yuv

Post by RetroJ »

I want to separate and recombine an image via YUV colorspace. Separation, I have:

Code: Select all

convert cookie.jpg -colorspace yuv -separate cookie-yuv-%02d.png
Image => Image Image Image

Now how do I recombine? I tried the following, but it is obviously not right.

Code: Select all

convert cookie-yuv-00.png cookie-yuv-01.png cookie-yuv-02.png -colorspace yuv -combine cookie-recombined.png
Image
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Post by anthony »

Sounds like something that still needs to be expanded on in IM.
prehaps you need to report this to the developers forum.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
Post Reply