23.10.2012 Views

Cmos-Usb2.0-Camera - Mikroskop Technik Rathenow Gmbh

Cmos-Usb2.0-Camera - Mikroskop Technik Rathenow Gmbh

Cmos-Usb2.0-Camera - Mikroskop Technik Rathenow Gmbh

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

CMOS-USB2.0-<strong>Camera</strong><br />

Product family USB2.0-Mini <strong>Camera</strong><br />

DFK 72 Color camera 5MPixel<br />

HOW TO USE THE INCLUDED SOFTWARE<br />

All cameras are shipped with the control software<br />

IC Capture, which can be used to:<br />

• Control all camera parameters<br />

• See the cameras live image<br />

• Capture single images from the camera and save<br />

them as BMP or JPG files<br />

• Capture sequences of single images and save them<br />

as enumerated BMP or JPG files<br />

• Capture image data streams and save them as an<br />

AVI file<br />

• IC Capture runs on Windows XP, Windows<br />

Vista and Windows 7 (32/64 bit)<br />

HOW DEVELOPERS WORK WITH THE CAMERA<br />

All cameras are shipped with the SDK IC Imaging<br />

Control®. IC Imaging Control® abstracts image devices<br />

and offers a number of ready to use, basic procedures:<br />

• Control all camera parameters<br />

• Simultaneously control many cameras<br />

• Live display with scroll and zoom<br />

• Fast acquisition directly into the main memory<br />

• Acquire single images, image sequences and video<br />

streams<br />

• Overlay live videos with graphics<br />

(e.g. crosshairs or clock)<br />

• Acquire AVI files with any codec, which is compatible to<br />

WDM<br />

• Ring buffer to "look into the past"<br />

• Control trigger mode and I/Os<br />

• IC Imaging Control® consists of a .NET component, an<br />

ActiveX® and a C++ Class Library. It runs on Windows<br />

XP and Windows Vista<br />

Private Sub Form_Load()<br />

Dim ImageData As Variant<br />

Dim x, y As Integer<br />

Dim Threshold As Integer<br />

All product and company names in this document may be trademarks and trade names of their respective owners and are hereby acknowledged. <strong>Mikroskop</strong> <strong>Technik</strong><br />

<strong>Rathenow</strong> GmbH cannot and does not take any responsibility or liability for any information contained in this document. The source code presented in this<br />

document is exclusively used for didactic purposes. <strong>Mikroskop</strong> <strong>Technik</strong> <strong>Rathenow</strong> not assume any kind of warranty expressed or implied, resulting from the use of<br />

the content of this document or the source code.<br />

All weights and dimensions are approximate. Unless otherwise specified the lenses shown in the context of cameras are not shipped with these cameras.<br />

<strong>Mikroskop</strong> <strong>Technik</strong> <strong>Rathenow</strong> GmbH Phone: +49(0)3385-53710<br />

Grünauer Fenn 40 Fax: +49(0)3385-537122<br />

D- 14712 <strong>Rathenow</strong> email: mikro.ra@askania.de<br />

Web: http://www.askania.de<br />

Threshold = 150<br />

ICImagingControl1.Device = "DMK 21F04"<br />

CImagingControl1.VideoFormat = "Y800 (640x480)"<br />

ICImagingControl1.MemoryCurrentGrabberColorformat =<br />

ICY8<br />

ICImagingControl1.MemorySnapImage<br />

ImageData = ICImagingControl1.MemoryGetImageData<br />

For y = 0 To ICImagingControl1.ImageHeight - 1<br />

For x = 0 To ICImagingControl1.ImageWidth - 1<br />

If ImageData(x, y) < Threshold<br />

ImageData(x, y) = 0<br />

Else<br />

ImageData(x, y) = 255<br />

End If<br />

Next x<br />

Next y<br />

ICImagingControl1.MemoryReleaseImageData ImageData<br />

ICImagingControl1.Display<br />

End Sub

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!