var fDesc=new Array();
fDesc[0] = "This program is able to detect circles in images. Therefor it uses the hough algorithm CvHoughCircles from the OpenCV library. You can define all parameters e.g. min-/max radius, min distance between circles, all kinds of thresholds, filters and so on.
Main Features :
- Detect Circles in Captures of Firewire Cameras
- Detect Circles in Image files
- Fully parameterizable
- Resulting Image can be exported
- Setup can be saved and loaded
- Example images and profiles included
- Result table with coordinates and radii.
- Faster detection with Intel Integrated Performance Primitives
- No further installations required except .NET Framework 3.5
- Export the coordinates and the radii informations to csv";
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 = '';
}
}