var fDesc=new Array(); fDesc[0] = "ImageApp is a program that involves a lot of principles from machine vision. A GUI that allows you to build up an image processing graph. An image processing graph is essentially a sequence of algorithms that do something to images. You can imagine the graph as the algorithms being the nodes and the flow-of-->data between the algorithms being the arcs.
For instance, you could have the sequence of filtering the image to remove noise, then extracting the edges using a Sobel edge operator, then running a line finding algorithm and so on. In mathematical terms this graph is known as a Directed Acyclic Graph (DAG)."; 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 = ''; } }