var fDesc=new Array();
fDesc[0] = "A group of tools, allowing users to upload digital images to servers for performing a 3D reconstruction of the scene and report the output back to the user.
A tool for producing and visualising the 3D scene using the data computed on servers.
The first simple application is the upload tool.
All that is required is that a sequence of images is uploaded to the server.
The order of the images can be set by the user, and the images can be subsampled before uploading for a faster service.
This is where the service really does its work.
At ARC, we have developed software to compute the reconstruction over a distributed network of PCs.
This makes our procedure much faster and also more robust.
Depending on the size, number and quality of the images that have been uploaded, a typical job may take from 15 minutes to 2 or 3 hours.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}