var fDesc=new Array(); fDesc[0] = "RoboRealm is an application for use in computer vision, image analysis, and robotic vision systems. Using an easy point and click interface, this program simplifies vision programming. It compiles many image processing functions into an easy to use windows based application that you can use with a webcam, TV Tuner, IP Camera, etc.

You may use RoboRealm to see your robot's environment, process the acquired image, analyze what needs to be done and send the needed signals to your robot's motors, servos, etc."; 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 = ''; } }