var fDesc=new Array();
fDesc[0] = "Vimba is the future-proof platform-independent SDK for all Allied Vision cameras with GigE Vision, FireWire (IEEE 1394), USB3 Vision, and Camera Link interface. It highlights ARMv8 (64-bit) support for NVIDIA® Jetson TX1 and TX2, operating system independent, Linux ARM support, APIs for C, C++, and .NET, based on the GenICam standard.
The genicam-based third-party software automatically connects with Vimba's TLs (transport layers). Cognex Adapter for VisionPro (version 6.0 or later), integrated viewer.";
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 = '';
}
}