var fDesc=new Array(); fDesc[0] = "The program determines the rotation to apply to each image for an optimal alignment. It optionally saves each aligned image in the same directory with Aligned in the name. Then it merges all the images and it produces several images based on statistical computations:
An image where each pixel is the brightest of all the original images
An image where each pixel is the darkest of all the original images
An image where each pixel is averaged from all the original images
An image where each pixel goes through a histogram filtering algorithm (maximizes the contrast)"; 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 = ''; } }