We need an ftp site for the FAQ and all substantial SIRDS stuff!
Any ideas??
THE FAQ:
The following is just a bunch of info I've collected about SIRDS. It is not
too well organized, nor complete, but it answers a lot of FAQs out there.
Please submit any updates/changes to me at th...@novell.com.
The following sections are covered herein:
SIRDS terminology
SIRDS FTP Sites
Commercial SIRDS Software
SIRDS Publications
Sample TEXT Stereograms
C Code to Generate SIRTS
Hope for the Hopeless
Commercial SIRDS Posters
My Signature :^/
-----------------------------------------------------------------------
----- SIRDS TERMINOLOGY -----------------------------------------------
-----------------------------------------------------------------------
SIRDS Single Image Random Dot Stereogram
SIRD Single Image Random Dot (not much to view in a dot; used by
newbies)
SIRTS Single Image Random TEXT Stereogram, also called ascii
stereograms
Stereogram general, simplified term for SIRDS and SIRTS and even
stereo-pairs (occasionally)
Autostereogram, RDS
equivalent to a SIRDS
RLS Random Line stereograms, instructional in learning stereogram
concepts (see Slinker and Burton publication)
Wall-eyed viewing Viewing stereograms by focusing past the actual image
Cross-eyed viewing Viewing stereograms by focusing in front of the image
-----------------------------------------------------------------------
----- SIRDS FTP SITES -------------------------------------------------
-----------------------------------------------------------------------
Submissions from E.Tho...@newcastle.ac.uk, kb...@novell.com, s
ftp.uwp.edu
/pub/incoming/graphics/rdsdraw.zip
EXCELLENT SIRDS painting/generating program. CHECK IT OUT!
wuarchive (128.252.135.4)
/mirrors/msdos/graphics/mindim20.zip
Several SIRDS (~32) in an RLE format with versatile viewer. GET IT!
/pub/MSDOS_UPLOADS/demos/sirdsani.zip
Lets you load a 3d object, position it, then generates an animated rotation
within stereograms.
/pub/xps/xps.?
Xwindows stereogram generator.
/pub/MSDOS_UPLOADS/graphics/dynamic.exe
Animated SIRDS (page flipping)
/graphics/graphics/mirrors/sugrfx.acs.syr.edu/3d/randot/3drandot.zoo
Converts color GIF to SIRDS on screen
/mirrors/msdos/graphics/perspect.zip
Simple SIRDS paint/view program
sunsite.unc.edu
/pub/academic/computer-science/virtual-reality/3d/
alt.3d.Z Older archive of the alt.3d newgroups
mindimage Stereogram Viewing package, rle images
randot Various programs to make random dot stereograms
red_blue Graphic files for viewing with Red/Blue glasses
stereograms Graphic and Text files of steroegrams
ftp.cs.waikato.ac.nz
/pub/papers/???.tar.Z
Research paper describing sirds, with several improvements
(archive??)
shimmer.exe
Flips through several SIRDS of the same image to create a shimmering effect
(related to above research paper)
-----------------------------------------------------------------------
----- COMMERCIAL SIRDS SOFTWARE ---------------------------------------
-----------------------------------------------------------------------
STW_DEMO.EXE: the full package will allow RDS creation
Approx 40$
N.E.Thing Enterprises
P.O. Box 1827
Cambridge, MA 02139
SEND MORE INFO!!
-----------------------------------------------------------------------
----- SIRDS PUBLICATIONS ----------------------------------------------
-----------------------------------------------------------------------
Search library databases with these keywords: Stereogram, Autostereogram,
SIRDS (Single ImageRandom Dot Stereogram), RDS.
From E.Tho...@ncl.ac.uk
An excellent source of information (sample RDS and source code)
is contained in Andrew A.Kinsman - Random Dot Stereograms
ISBN 0-9630142-1-8 $13.95 U.S. Published by Kinsman Physics,
P.O. Box 22682, Rochester, N.Y. 14692-2682
See the following periodicals:
Journal of Imaging Science and Technology, May/June 1992, Vol 36, #3.
Slinker & Burton
SEND MORE REFERENCES!
-----------------------------------------------------------------------
----- SAMPLE SIRTS (TEXT Stereograms) ---------------------------------
-----------------------------------------------------------------------
From: dth...@bbx.basis.com (Dave Thomas)
O O
n n n n n n n n n n n n n n n n
f f f f f f f f f f f f f
e e e e e e e e e e e e e e e e
a a a a a a a a a a a a a
a a a a a a a a a a a a a a a a
r r r r r r r r r r r r r
r r r r r r r r r r r r r r r r
g g g g g g g g g g g g g g g g g g g g g g g g g
r r r r r r r r r r r r r r r r r r r
e e e e e e e e e e e e e e e
a a a a a a a a a a a a a
t t t t t t t t t t t
<<<<>>>><<<<>>>><<<<>>>><<<<>>>><<<<>>>><<<<>>>><<<<>>>><<<<>>>><<<<>>>>
d d d d d d d d d d d
e e e e e e e e e e e e e
p p p p p p p p p p p p p p p
t t t t t t t t t t t t t t t t t t t
h h h h h h h h h h h h h h h h h h h h h h h h h
One more from ... well ... YOU figure it out!
_-~-_-~-_-~-_-~-_-~-_-~-_-~-_-~-_-~-_-~-_-~-_-~-_-~-_-~-_-~-_-~-_-~-_-~-_-~
! Adam Adam Adam Adam Adam Adam ! "Lawn !
!Spragg Spragg Spragg Spragg Spragg Spragg Spragg! service!" !
! Adam Adam Adam Adam Adam Adam ! -Stup !
!Spragg Spragg Spragg Spragg Spragg Spragg Spragg! !
! Adam Adam Adam Adam Adam Adam ! atspragg@ !
!Spragg Spragg Spragg Spragg Spragg Spragg Spragg! ucdavis.edu !
! Adam Adam Adam Adam Adam Adam ! GO AGS! !
_-~-_-~-_-~-_-~-_-~-_-~-_-~-_-~-_-~-_-~-_-~-_-~-_-~-_-~-_-~-_-~-_-~-_-~-_-~
-----------------------------------------------------------------------
----- C CODE TO GENERATE TEXT STEREOGRAMS -----------------------------
-----------------------------------------------------------------------
Also from Dave Thomas [slightly modified]:
Now here's a hack of a hack I found on the net. Basically it generates
stereograms from ascii diagrams. Here's the program first:
#define DEPTH0 16
#define COLS 79
#include <stdio.h>
main()
{
long now;
int col;
char m[COLS+1],s[COLS+1];
int i,e,c;
/* seed random number generator */
time (&now);
srand (now);
/* print fusion X's */
for (col = 0; COLS - col >= DEPTH0; col += DEPTH0)
{
for (i = 0; i < DEPTH0-1; ++i)
putchar (' ');
putchar ('X');
}
putchar ('\n');
/* process input image */
while (memset(m,'\0',COLS+1),fgets (m, COLS+1, stdin))
{
e = 0;
s[COLS] = 0;
for(i=0; i<COLS; )
{
e = 0;
while (i >= DEPTH0 && i < COLS &&
(c = m[i - DEPTH0]) >= '0' && c <= '9')
{
e = 1;
s[i] = s[i-DEPTH0+c-'0'];
++i;
}
s[i++] = (e || i < DEPTH0) ? randasc() : s[i-DEPTH0];
}
puts (s);
}
}
randasc()
{
/* large set of random characters */
return ('!'+rand()%92);
/* lowercase random letters */
/* return ('a'+rand()%26); */
}
Try passing it this file as the standard input:
22222222222222222 11111111111111111111111
2222222222222222222 11111111111111111111111
22222222222222222222 11111111111111111111111
22222 22222 11111
22222 22222 11111
22222 22222 11111
22222 22222 11111
22222 22222 11111
22222 22222 11111
22222222222222222222 11111
2222222222222222222 11111
22222222222222222 11111
You'll get output like this:
X X X X
"i`<$$Co6&`R(D(v"i`<$$Co6&`R(D(v"i`<$$Co6&`R(D(v"i`<$$Co6&`R(D(v"i`<$$Co6&`R(D
dZ<$wamwBy&>`,QFdZ<$wamwBy&>`,QFdZ<$wamwBy&>`,QFdZ<$wamwBy&>`,QFdZ<$wamwBy&>`,
rHt&{:7Z,o:.sw5[rHt&{:7Z,osw5[rHt&{:7Z,osw505[rHt&{:7Zosw505[rHt&{:7Zosw505[rR
3C&B[8g"EzQy{lW_3C&B[8g"Ez{lW_3C&B[8g"Ez{lW_3S3C&B[8g"z{lW_3S3C&B[8g"z{lW_3S3y
{TAtrJyiQ?fiVF!G{TAtrJyiQ?VF!G{TAtrJyiQ?VF!G{T]TAtrJyi?VF!G{T]TAtrJyi?VF!G{T]s
#<sf!Q1`I|r?FLoB#<sf!Q1`I|FLoB#T#<sf!Q1`ILoB#TaT#<sf!Q1`ILoB#Ta#<sf!#Q1`ILoB#T
\qy5:nm$LuSD0hh7\qy5:nm$Lu0hh7\x\qy5:nm$Lhh7\x"x\qy5:nm$Lhh7\x"\qy5:-nm$Lhh7\x
/<bic$[#7hrqKUm`/<bic$[#7hKUm`/7/<bic$[#7Um`/7r7/<bic$[#7Um`/7r/<bick$[#7Um`/7
u)ZUw(L,'O)X\L&Xu)ZUw(L,'O\L&Xu|u)ZUw(L,'L&Xu|y|u)ZUw(L,'L&Xu|yu)ZUwy(L,'L&Xu|
;rmy9`3`#YPTdg:,;rmy9`3`#Ydg:,;(;rmy9`3`#g:,;(7(;rmy9`3`#g:,;(7;rmy94`3`#g:,;(
4U,yml1w^N7d;f964U,yml1w^N;f964&4U,yml1w^f964&;&4U,yml1w^f964&;4U,ym{l1w^f964&
?"A0+;<>Y8igID(]?"A0+;<>Y8ID(]?"A0+;<>Y8ID(]?"?"A0+;<>Y8ID(]?"?A0+;<O>Y8ID(]?"
D0tscheRl5hfJx.cD0tscheRl5Jx.cD0tscheRl5Jx.cDeD0tscheRl5Jx.cDeDtscheiRl5Jx.cDe
-AaV^hv,r7f6%<)R-AaV^hv,r7%<)R-AaV^hv,r7%<)p)R-AaV^hv,r7%<)p)R-aV^hv>,r7%<)p)R
IRW)ytVbWqd^]qi(IRW)ytVbWqd^]qi(IRW)ytVbWqd^]qi(IRW)ytVbWqd^]qi(IRW)ytVbWqd^]q
BX(Aqq`^Y-z8v=[gBX(Aqq`^Y-z8v=[gBX(Aqq`^Y-z8v=[gBX(Aqq`^Y-z8v=[gBX(Aqq`^Y-z8v=
-----------------------------------------------------------------------
----- HOPE FOR THE HOPELESS :-) ---------------------------------------
-----------------------------------------------------------------------
From: wch...@vela.acs.oakland.edu (William C. Haga)
Being one who has used wide-eyed vision on chain link fences ever
since I was a kid, I was able to see the images in SIRDS right
away. But I've had difficulty explaining the technique to
friends. Today I had the latest Games magazine with me at my parents
house. Games is running another contest using SIRDS, so there are
three in the latest issue. This time I thought of the reflection
idea. So I opened mom's china cabinet, put the magazine against the
glass in the door, and told mom to keep looking at her own reflection
in the glass until the image appeared.
It took less than thirty seconds.
When she saw the 3d train engines, I was subjected to a squeal of
delight that I hadn't heard from her for a long time. "EEK! IT'S
COMING OUT AT ME! IS THIS EVER NEAT!". Dad tried for about a minute
but gave up.
About an hour later, mom and I heard a shout. We went to
the dining area, and there was dad with the magazine against the
glass in the door. "Isn't that just the most amazing thing!", said he.
Later they were making jokes about teaching old dogs new tricks.
-----------------------------------------------------------------------
----- COMMERCIAL SIRDS Posters ----------------------------------------
-----------------------------------------------------------------------
From: th...@novell.com (Todd D. Hale)
For those who do not have a local SIRDS distributor (i.e., the poster
cart at the mall), here is one company you can order them from. The
following posters are all certifiably cool with lots of great details,
and come in nice colors. They are (I believe) designed by NVision, or
something like that, and distributed here by Axis Corp.
Posters:$25 Dinosaurs
$25 Discovery (Space shuttle and planet)
$25 Lady Liberty (U.S. Statue of Liberty)
$25 B-2 Stealth Bomber
$25 F-117 Bomber
$25 Nature's Majesty (Eagle with fish in talons, pine trees in bkgrd)
$30 Calypso Reef (Ocean Scene--new design, more detail)
Many more now, including small, $15 posters.
Address:Axis Corp.
1732 S. 790 W.
Salt Lake City, UT 84104
USA
Phone: (801)977-8816
You must include $5 for shipping and a poster tube. (The guy quoted me
that price for shipping to Australia.) Or, you can pay $17 for a tube
in a box. Although they haven't had any problems shipping in the poster
tubes, they only guarantee safe delivery in a well-packed box.
Since I'm writing from the U.S., all currency mentioned here is in U.S.
dollars.
And, by no means am I associated with these guys at all, except I spend a
lot of time enjoying their posters! (i.e., this is not an ad, but a
response to a request for SIRDS access.)
ANOTHER SUPPLIER:
Infix Technologies
PO Box 381
Orem, UT 84057-0381
(801) 221-9233
Shipping now:
18x24 Earth (mercator projection of the Earth's altitudes)
18x24 Salt Lake LDS Temple Centennial
Under development:
18x24 Beethoven (Oct 93)
(others are coming soon, too.)
Retail price for the 18x24 inch prints is $20 plus $3 s/h. Utah residents
add 6.25% sales tax. Wholesale and distributor discounts are available.
Quotes for custom work are also available. Cost and minimum order varies,
based on content.
John M. Olsen
jol...@nyx.cs.du.edu
*
Todd D. Hale * * * *
th...@novell.com * *
ha...@ernie.cs.byu.edu
--------------------------------- _ /X\ ------------------
Unofficially speaking, of course. :^/_/__// \\_
----------------------------------------- \__ --------------------------
I could not connect this machine. Is this machine name correct?
Need Advise!
Thanks,
yakkn
> In article 2CBE...@novell.com, th...@novell.com (Todd D. Hale) writes:
> :
>> wuarchive (128.252.135.4)
> :
> I could not connect this machine. Is this machine name correct?
wuarchive.wustl.edu
--
Bruce Institute of Advanced Scientific Computing
br...@liverpool.ac.uk University of Liverpool