var fDesc=new Array();
fDesc[0] = "TSView is a modular software specialized for image acquisition, processing and analysis.
It’s mainly comprised of two modules:
- Image Acquisition
- Image Processing and Labeling
The images acquired will display on the screen immediately and may be processed with various tools:
- Contrast, lightness and color adjusting
- Size changing and rotating of image
- Sharpness increase/detail orientation
- White balance and image graying";
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 = '';
}
}