Hi,
when the image was unwrapped to a spherical or cylindrical projection,
it can be used direct (version 1.0.8 needed),
e.g. try that code for a spherical projected image:
|
Source code
|
1
2
3
4
5
|
<view limitview="off" />
<image type="SPHERE" hfov="360" vfov="90" voffset="+15">
<sphere url="pano.jpg" />
</image>
|
or that or a cylindrical one:
|
Source code
|
1
2
3
4
5
|
<view limitview="off" />
<image type="CYLINDER" hfov="360" vfov="90" voffset="+15">
<cylinder url="pano.jpg" />
</image>
|
the "voffset" parameter shifts the image up or down,
when you say it captures 30 degrees above the horizon and 60 degrees below,
it needed to be shift 15 degree down to center the horizon correct,
e.g.
upper pano edge = -vfov/2 + voffset
or:
lower pano edge = +vfov/2 + voffset
with values:
-30 = -90/2 + voffset
or:
+60 = +90/2 + voffset
voffset = -30 + 90/2 = +15
best regards,
Klaus