var fDesc=new Array(); fDesc[0] = "The Point Cloud Library (PCL) is a standalone, large scale, open project for 2D/3D image and point cloud processing. FLANN is a library for performing fast approximate nearest neighbor searches in high dimensional spaces. It contains a collection of algorithms that work best for nearest neighbor search and a system for automatically choosing the best algorithm and optimum parameters depending on the dataset."; 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 = ''; } }