Anaglyph Creator
Anaglyph Creator
Cool little app to quickly and easily create anaglyphs. (Red/Blue 3D Images)
http://www.reelmedia.org/cgi-bin/PurePr ... ub=General
Believe it or not, I actually needed this for a much larger commercial project.
You can get the Red/Blue glass from cerial boxes, SpyKids DVD movie, comic books, magazines, etc.
http://www.reelmedia.org/cgi-bin/PurePr ... ub=General
Believe it or not, I actually needed this for a much larger commercial project.
You can get the Red/Blue glass from cerial boxes, SpyKids DVD movie, comic books, magazines, etc.
You can use this app to create your own Anaglyph images using a standard digital camera.
Line up a subject and take a picture of it, move the camera about 2 inches to the right and take another picture.

Transfer these images to your computer.
Start Anaglyph Creator and load the first (left) image into the left window and the second (right) image into the right window. Press the Create button.
View cool 3D image with Red/Blue glasses.
Line up a subject and take a picture of it, move the camera about 2 inches to the right and take another picture.

Transfer these images to your computer.
Start Anaglyph Creator and load the first (left) image into the left window and the second (right) image into the right window. Press the Create button.
View cool 3D image with Red/Blue glasses.
- NoahPhense
- Addict
- Posts: 1999
- Joined: Thu Oct 16, 2003 8:30 pm
- Location: North Florida
Re: Anaglyph Creator
Very nice! A suggestion: allow the user to drag/drop an image onto the left and right panels. And a bug: if you have loaded both images, but then click a panel to load a new one but then cancel, the Create button does nothing even though the original image is still shown in the panel that was cancelled.
my prg date of the 13/01/2006
on the French forum:
http://purebasic.hmt-forum.com/viewtopi ... t=anaglyph
allows the rotation and displacment of the images for the misalignment!!
available here: http://michel.dobro.free.fr/bidouilles/ ... glyphe.zip

on the French forum:
http://purebasic.hmt-forum.com/viewtopi ... t=anaglyph
allows the rotation and displacment of the images for the misalignment!!
available here: http://michel.dobro.free.fr/bidouilles/ ... glyphe.zip



hi Paul, your Anaglyph tool looks realy good so far. But red-cyan is not the
only one ;-)
you should provide more different anaglyph types like red-blue, red-green,
lcd-shutter and interlace stereo glasses users.
I've created some examples for you with one of your 3d images :)

click hereto visit the website
only one ;-)
you should provide more different anaglyph types like red-blue, red-green,
lcd-shutter and interlace stereo glasses users.
I've created some examples for you with one of your 3d images :)

click hereto visit the website
-
- Enthusiast
- Posts: 469
- Joined: Sun Mar 16, 2008 9:18 am
Re:
Paul, would you ever care to share the source? Or at least tell us the theory behind making an image all red and all blue? I have no idea how to strip all colors except for red/blue in an image.
Re: Re:
UserOfPure wrote:Paul, would you ever care to share the source? Or at least tell us the theory behind making an image all red and all blue? I have no idea how to strip all colors except for red/blue in an image.
hum

Code: Select all
r= rgb(red(point(x,y)),0,0)
vb= rgb(0,green(point(x,y),blue(point(x,y)))
-
- Enthusiast
- Posts: 469
- Joined: Sun Mar 16, 2008 9:18 am
Re: Re:
Okay, I think I understand. Will experiment. Thanks!
[Edit] Okay, that's helped, but does anyone know how I can mix the resulting red pixel from the left image with the blue pixel from the right image? Or a general math formula to mix two given color values? I'm hopeless at maths.
[Edit] Okay, that's helped, but does anyone know how I can mix the resulting red pixel from the left image with the blue pixel from the right image? Or a general math formula to mix two given color values? I'm hopeless at maths.

Re: Anaglyph Creator
Code: Select all
r=red(left_picture(ix,iy) )
v=Green(right_picture(ix,iy))
b=Blue(right_picture(ix,iy))
Plot(x,y, RGB(r,v,b))

-
- Enthusiast
- Posts: 469
- Joined: Sun Mar 16, 2008 9:18 am
Re: Anaglyph Creator
Thanks again dobro, but I decided against that method and just mixed the two pics together as a new third. Was much easier, and faster.
Re: Anaglyph Creator
how to mix 2 pictures without using point() plot()?
You can save the mix?
You can save the mix?
