var fDesc=new Array(); fDesc[0] = "Mahotas is a set of functions for image processing in Python.

It is completely based on numpy arrays as its datatype. It has its heavy routines implemented in clean C in a way that is both very clean, type independent (using templates), and fast.

All of the code is self contained and it has no other dependencies than numpy and scipy.ndimage (for certain algorithms). Freeimage is an optional dependency if you want to use the imread and imsave functions."; 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 = ''; } }