var fDesc=new Array(); fDesc[0] = "Designing project layouts can be tiresome. Have you ever dreamed of a tool that will accept your drawing printouts or AutoCAD files, and let you design camera views with instant feedback?
ACTi presents Floor Plan Creator with a specialized AutoCAD LISP to generate image files for importing. It is easy to check the field of view, to simulate security camera system design, and to communicate with end customer.
Most projects come to System Integrators on drawings so the graphical representation of the Field of View is required.
How to use:
* Load Floor Plan background image from *.jpg
* Find the best camera location efficiently.
* Calculate precise camera lens focal length and viewing angles immediately
* Real-time Projected View and Sample Screen allow user to simulate the size of viewing object
* Check the field of view of each camera and find blind spot to increase the security level
* Export the floor plan drawings with camera positions and camera settings by *.jpg and MS Word, Excel. This supports customer completing their project document efficiently."; 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 = ''; } }