var fDesc=new Array(); fDesc[0] = "Recolored uses sophisticated algorithms to process digital images, but it needs some help to complete the process. Using brush strokes the user indicates which colors different objects in the image should have. The graphical user interface sports several tools and functions that helps the user draw strokes and select fitting colors in an efficient manner. When the user is done the software takes over and propagates the colors from the brush strokes into the rest of the image. Recolored uses the grayscale intensities from the original to accurately blend in colors, and it takes care to mix colors appropriately near object boundaries."; 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 = ''; } }