Search found 4 matches

by biospud
2013-09-18T11:37:39-07:00
Forum: Users
Topic: One-liner to create green-magenta anaglyph 3D?
Replies: 5
Views: 3489

Re: One-liner to create green-magenta anaglyph 3D?

fmw42 said:
convert \( right -set colorspace RGB -channel r -separate +channel \) \( left -set colorspace RGB -channel g -separate +channel \) \( right -set colorspace RGB -channel b -separate +channel \) -combine result


Thanks. That does seem faster than my -fx version.

It is always a good ...
by biospud
2013-09-18T11:15:57-07:00
Forum: Users
Topic: One-liner to create green-magenta anaglyph 3D?
Replies: 5
Views: 3489

Re: One-liner to create green-magenta anaglyph 3D?

I eventually got it working. I can produce a full color green-magenta anaglyph image from the individual left and right full color images thus:

convert \(right -set colorspace RGB -fx R \) \(left -set colorspace RGB -fx G \) \(right -set colorspace RGB -fx B \) -combine result

For some reason I ...
by biospud
2013-09-18T10:27:06-07:00
Forum: Users
Topic: One-liner to create green-magenta anaglyph 3D?
Replies: 5
Views: 3489

Re: One-liner to create green-magenta anaglyph 3D?

Thank you very much fmw42; this is definitely a step in the right direction. However it's not yet exactly what I need.

First, for my purposes, the "roll" statements are unnecessary; my left-eye and right-eye views are already correctly aligned and require no additional depth adjustment. But it's ...
by biospud
2013-09-18T05:58:51-07:00
Forum: Users
Topic: One-liner to create green-magenta anaglyph 3D?
Replies: 5
Views: 3489

One-liner to create green-magenta anaglyph 3D?

I know I can create red-cyan anaglyph images by

composite -stereo +0 right.png left.png stereo.png

...but now I want to create green-magenta anaglyphs. Specifically I want to combine the green color channel from the left-eye image, with the red and blue channels from the right-eye image, to ...