var fDesc=new Array(); fDesc[0] = "ZED SDK allows you to build spatially-aware mobile apps that capture and understand your environment. You can integrate depth and motion sensing technology for your VR/AR and autonomous robotic applications using supported ZED cameras. The ZED SDK requires an NVIDIA GPU with a Compute Capability > 2. If you don’t have an NVIDIA GPU, or you're using OSX or Android, you can still use the ZED to capture side by side 3D video but you will not be able to compute depth maps using the ZED SDK."; 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 = ''; } }