|
2010-08-18
, 09:26
|
|
Posts: 2,142 |
Thanked: 2,054 times |
Joined on Dec 2006
@ Sicily
|
#22
|
convert left.jpg -rotate 270 -geometry 270x480 left2.jpg convert right.jpg -rotate 270 -geometry 270x480 right2.jpg montage right2.jpg left2.jpg -geometry +0+0 both.jpg
The Following User Says Thank You to debernardis For This Useful Post: | ||
|
2010-08-18
, 09:39
|
Posts: 1,751 |
Thanked: 844 times |
Joined on Feb 2010
@ Sweden
|
#23
|
Given you have two photos, one taken from your left eye (left.jpg) and one from your right eye (right.jpg), this is what you are going to do with imagemagick (available in Extras):
Then cross your eyes upon both.jpgCode:convert left.jpg -rotate 270 -geometry 270x480 left2.jpg convert right.jpg -rotate 270 -geometry 270x480 right2.jpg montage right2.jpg left2.jpg -geometry +0+0 both.jpg
Maybe there are other options to make it even shorter.
Now somebody make a nice QT program to choose the two photos and apply the conversion automatically!
The Following User Says Thank You to AlMehdi For This Useful Post: | ||
|
2010-08-18
, 10:13
|
|
Posts: 2,142 |
Thanked: 2,054 times |
Joined on Dec 2006
@ Sicily
|
#24
|
#!/bin/sh FILE=`zenity --file-selection --title="Select left photo"` case $? in 0) echo "\"$FILE\" selected.";; 1) echo "No file selected.";; -1) echo "No file selected.";; esac export LEFT=$FILE FILE=`zenity --file-selection --title="Select right photo"` case $? in 0) echo "\"$FILE\" selected.";; 1) echo "No file selected.";; -1) echo "No file selected.";; esac export RIGHT=$FILE echo $LEFT echo $RIGHT convert $LEFT -rotate 270 -geometry 270x480 left2.jpg convert $RIGHT -rotate 270 -geometry 270x480 right2.jpg montage right2.jpg left2.jpg -geometry +0+0 -frame 5 both.jpg zenity --info --text="Done - your 3d photo is both.jpg"
|
2010-08-20
, 14:33
|
Posts: 96 |
Thanked: 12 times |
Joined on Jun 2008
|
#25
|
|
2010-08-20
, 17:08
|
|
Posts: 2,142 |
Thanked: 2,054 times |
Joined on Dec 2006
@ Sicily
|
#26
|
Wow, this looks great. Only problem is I can't get the images to be 3d no matter how cross eyed and ridiculas I look .
|
2010-08-20
, 18:08
|
Posts: 130 |
Thanked: 51 times |
Joined on Sep 2009
|
#27
|
|
2010-08-24
, 10:05
|
|
Posts: 220 |
Thanked: 49 times |
Joined on Aug 2010
@ england
|
#28
|
|
2010-08-24
, 16:23
|
Posts: 96 |
Thanked: 12 times |
Joined on Jun 2008
|
#29
|
|
2010-08-24
, 16:45
|
Posts: 466 |
Thanked: 418 times |
Joined on Jan 2010
|
#30
|
stereograph
Stereograph is a stereogram generator. In detail it is a single image
stereogram (SIS) generator. That is a program that produces two-dimensional
images that seem to be three-dimensional (surely you know the famous works of
"The Magic Eye", Stereograph produces the same output). You do _not_ need
any pair of colored spectacles to regard them - everyone can learn it.
Just found this on Symbianfreak http://www.symbian-freak.com/news/00..._3d_photos.htm.
I know it's not what we're after really, but it's a pointer I suppose.