var fDesc=new Array(); fDesc[0] = "Fixation Detector is the tool to detect fixations from raw gaze data (samples). The only gaze data value it needs are gaze X-Y coordinates and sample’s timestamp. It has been developed as a collection of fixation detecting algorithms. Currently, it supports 3 such algorithms: 'fixation size', 'speed' and 'dispersion'. Obviously, the names reflect the measured parameters of a set of samples that are crucial for fixation detection.
The tool is developed as COM server. The manual included into the installation package has a short example of using Fixation Detector as well as its COM interface description."; 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 = ''; } }