var fDesc=new Array(); fDesc[0] = "This program demonstrates the use of the image data provided by Bayer cameras. This software educates users about Bayer cameras, what they are or how they work etc. Select some sample images in visualize them in four different ways:
-Digital Original Image (8bit)
- Digital Original image and color information
- Copy of neighbor pixels
- Mean value of neighbor pixels."; 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 = ''; } }