var fDesc=new Array();
fDesc[0] = "eCognition Developer is a powerful development environment for object-based image analysis. It is used in earth sciences to develop rule sets (or applications for eCognition Architect) for the automatic analysis of remote sensing data.
Features:
- Superior collection of object-based image analysis tools and algorithms
- Analyzes raster, vector and point cloud data
- Dual startup - easy to use QuickMap & traditional Developer mode
- Intuitive development environment
- Scalable from a single desktop to enterprise production workflows
- Software Development Kit (SDK)
- Online access to rule set resources";
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 = '';
}
}