SCD-0015 Basler Pylon Area2 Documentation

Size: px
Start display at page:

Download "SCD-0015 Basler Pylon Area2 Documentation"

Transcription

1 SCD-0015 Basler Pylon Area2 Documentation Release XII Tordivel AS Mar 11, 2018

2

3 Contents 1 User Guide 3 2 Release notes 19 i

4 ii

5 Basler Pylon Supports Pylon from 2 to 5 Scorpion Vision Software provides driver for Basler GigE and USB3 cameras: Pylon5AreaCamera2_x_x_x_x.dll, Pylon v5.0 Pylon4AreaCamera2_x_x_x_x.dll, Pylon v4.0 The cameras are supported through Basler s Pylon software Pylon 4 and Pylon 5 is supported. The driver is based on the legacy BaslerPylonArea2 - this driver only supports GigE cameras. note: Basler recommends Pylon5 for Windows 10 operating system The driver is included with Scorpion Vision Installer and located in the Scorpion Runtime folder. The Scorpion Vision Software must be version XI or higher. Release notes provides driver version details and reference to the corresponding Pylon version. Contents: Contents 1

6 2 Contents

7 CHAPTER 1 User Guide 1.1 Getting Started The first step is to connect cameras to GigE or GigE Vision network adapters. Install Pylon software. For non GigE Vision adapters Pylon will install filter drivers. Verify or setup IP addresses of the cameras. See Network Setup for more details. Optionally cameras can be checked with Pylon Viewer. If several cameras need to share the same adapter, bandwidth load must be estimated. See Bandwidth Control for more details. Note: For really high-performance note that the performance intermediate routers and hubs can affect the system operation 1.2 Network Setup Basler GigE cameras can run on 100Mbit and 1000Mbit adapters. If high performance is expected, the camera can to be connected directly to dedicated GigE or GigE Vision adapter on the target PC. Note: Running on 100Mbit requires tight bandwidth control For non GigE Vision adapters Pylon will install filter driver. This can be verified by going to Control Panel-Network Connections-Connection Properties. Make sure filter driver is present and activated on the correct adapter. Cameras won t work without filter driver. When Basler cameras are connected they do get IP addresses. Even so, pylon IP Configurator should be invoked to verify that cameras get correct addresses. 3

8 Begin by verifying that adapters have correct subnets. Then see that cameras have IP addresses from those subnets. Use static addresses if automatic or dhcp does not work. Note: Max Receive and Transmit Buffers to 512 or 2048 or as high as the adapter allows. Do not allow the adapter to negotiate the netwoek speed. 1.3 Pylon Viewer pylon Viewer from Basler allows to view existing connected cameras, open them, change their parameters and test different modes of operation. 4 Chapter 1. User Guide

9 Among other things pylon Viewer can be used to stress test network setup. Open and run cameras at high framerates and monitor message log for error messages. Also notice read-only counters at Stream Parameters-Statistics. See if failed frame count stays at zero. 1.4 Bandwidth Control Although theoretical throughput of Gigabit network is around 120MB/s, it should be expected that cameras can transfer maximum of MB/s of image data. Multiple cameras will share the available bandwidth More bandwidth can be added to a system by using multiple adapters Adapter performance can be improved by enabling Jumbo Frames and disabling Interrupt Moderation Limiting camera framerate is an easy way to do bandwidth management. See Triggering Control for more details Bandwidth Control 5

10 For standard GigE adapters jumbo frames (or large packets) can be enabled. This will increase the capacity of the system. Go to adapter properties and click on Configure, then go to Advanced tab and search for jumbo frames. Not all adapters and routers support jumbo frames. At the same time Packet Size in camera driver must be adjusted to match size of jumbo frames (see transport layer parameters) However it would work best only on short direct connections. Over longer distances large packets can make things worse. GigE vision adapters will be already optimized for this, no additional setup needed. When there are several cameras on the same adapter, the sum of load across all cameras must not exceed total line throughput. However, even then there may be packet conflicts - if cameras grab images simultaneously and try to transfer them as quickly as possible. The following parameters may be adjusted to avoid packet conflicts (more details in transport layer parameters): Packet Size - making it larger (as allowed by network adapter) will reduce load. But conflicts on larger packets will take longer to resend. Inter-Packet Delay - may be increased to reduce load. Frame Transmission Delay - may be differentiated across several cameras. Bandwidth Reserve - reserve bandwidth to handle packet resend and transmission collisions Bandwidth Assigned - read-only parameter tells exactly how much bandwidth a camera is using. Have a sum of this for all cameras on the same adapter. Note: In a system were you do not need maximum performance setting the Bandwith Reserve to a value between 10 to 30% will handle improve the robustness and can be recommended. The number of collision may increase having multiple hw triggered cameras. 1.5 Triggering Control By default camera will be in freerun mode without framerate limit. Scorpion may trigger images at defined slower rate, but camera would still stream images as fast as possible under given image size, exposure, etc. Network may get unnecessarily overloaded. 6 Chapter 1. User Guide

11 Note: The framerate is explicitly specified by: Enable Acquisition Frame Rate - Enables framerate control. Acquisition Frame Rate - Defines max number of images to deliver in one second. Another option to limit network overload is to use Hardware or Software camera trigger. Trigger is enabled with TriggerMode parameter set to on, then Trigger Source can define either Hardware Line or Software trigger. Some Basler cameras provide both AcquisitionStart and FrameStart trigger groups Triggering Control 7

12 Note: They both relate to triggering parameters, but it was observed that if both groups are present, then Acquisition- Start group is ignored by camera. Therefore either both groups or only FrameStart should be set. 1.6 Using Software Trigger Software Trigger will not be as fast as Hardware trigger but it can be used as an alternative to camera freerun mode, especially when network load must be reduced. In order to use software trigger the following parameters must be checked: Trigger Mode is on Trigger Source is set to Software Software trigger will be automatically issued with Scorpion s Grab command (via python or via Scorpion actions). Python example: ExecuteCmd('Grab','') Alternatively software trigger can be issued directly to the camera via setproperty. Python example: GetCamera("0").setProperty("softwareTrigger", 1) 1.7 Scorpion Continous Mode Scorpion Vision 8 and higher supports continous mode. This mode is implemented in order to reduce the overhead when using high framerates. Scorpion can handle framerates up to frames per second. The actual number depends upon camera type and interface used. The continous mode eliminates the need and overhead to issue a Grab command for each image. This means that Scorpion only concentrates to receive the images as fast as they flow into the PC. Activate continous mode for the first camera: GetCamera("0").setProperty("continous", 1) DeActivate continous mode for the first camera: GetCamera("0").setProperty("continous", 0) 1.8 Camera Configuration in Scorpion Camera parameters can be configured via configuration dialog or by using python scripts. 8 Chapter 1. User Guide

13 When parameters have been changed press either Apply or OK. In both cases the new parameters (and only those that were actually edited) are written to camera. But in case of Apply the dialog remains open. The parameter values will be updated and will reflect what actually was accepted by the camera. It may turn out that changing one parameter modifies another (e.g. changing Binning will change Width/Height). This is a convienent way to iteratively navigate through parameter interdependencies towards target settings. When dialog is closed by OK the camera is automatically closed and reopened. This allows changing of any parameter (as opposed to python scripts, which for example do not allow changing width or height of the camera). The parameters are provided via GeniCam interface directly from camera. The particular names and order of parameters may differ from camera to camera. However the bulk of essential parameters usually do not change. Below is definition for some of the most common parameters Camera Configuration in Scorpion 9

14 1.8.1 General Property Inhibit- Pylon- Terminate Log level Buffer- Count Reconnect Heartbeat Description If enabled then Pylon terminate function will not be called. Enable when using several pylon drivers in the same profile, for example Basler Runner together with Area Scan gige or firewire cameras. Level 0 suppresses all messages. Level 1 issues error and warning messages. Levels 2,3 issue diagnostic messages. Number of buffers used for grabbing. More buffers will consume more memory. On the other hands buffers will guard against loss of image due to occasional image processing slowdown. Mimumum recommended count of buffers is 2. When set to True camera driver will try to periodically reopen camera in case of network connection loss. Number of milliseconds between network connection checks. This parameter tells how quickly network loss is detected by camera when there is one. Setting to too low value will add to network congestion ImageFormat Property UseBGR Description This should be enabled for color cameras, otherwise blue and red will be swapped in the final image. This enumeration provides a list of the available test images. Selecting a test image from the list will enable the test image AnalogControls TestImageSelector Property Description GainAuto The gain auto function automatically adjusts the Auto Gain Raw parameter value within set limits, until a target average gray value for the pixel data from Auto Function AOI1 is reached. All_GainRaw Sets the raw value of the selected gain control. The raw value is an integer value that sets the selected gain control in units specific to the camera. All_BlackLevelRaw This value sets the black level control. GammaEnable Enables the gamma correction. Gamma This feature is used to perform gamma correction of pixel intensity. 10 Chapter 1. User Guide

15 1.8.4 AOI Property Width Height OffsetX OffsetY Description Set the width of the area of interest in pixels. This value sets the height of the area of interest in pixels. This value sets the X offset (left offset) for the area of interest in pixels, i.e., the distance in pixels between the left side of the sensor and the left side of the image area. This value sets the Y offset (top offset) for the area of interest, i.e., the distance in pixels between the top of the sensor and the top of the image area. Sets the number of binned adjacent vertical pixels. Their charges will be summed and reported out of the camera as a single pixel. Sets the number of binned adjacent horizontal pixels. Their charges will be summed and reported out of the camera as a single pixel AcquisitionTrigger BinningVertical BinningHorizontal Property TriggerMode Trigger- Source TriggerActivation ExposureAuto Exposure- TimeRaw Exposure- TimeAbs Expo- suretime- BaseAbs Acquisition- FrameRateEnable Description This enumeration sets the trigger mode for the selected trigger. This enumeration sets the signal source for the selected trigger. This enumeration sets the signal transition needed to activate the selected trigger. The exposure auto function automatically adjusts the Auto Exposure Time Abs parameter value within set limits, until a target average gray value for the pixel data of the related Auto Function AOI is reached. This value sets an integer that will be used as a multiplier for the exposure timebase. The actual exposure time equals the current exposure time raw setting times the current exposure time base abs setting. This float value sets the camera s exposure time in microseconds. This float value sets the time base (in microseconds) that is used when the exposure time is set with the raw setting. This boolean value enables setting the camera s acquisition frame rate to a specified value Camera Configuration in Scorpion 11

16 1.8.6 DigitalIO Property LineX_LineMode LineX_LineDebouncerTimeRaw LineX_LineFormat OutX_LineInverter OutX_LineStatus OutX_LineSource OutX_UserOutputValue Description This feature controls whether the physical Line is used to Input or Output a signal. When a Line supports input and output mode, the default state is Input to avoid possible electrical contention. Line Mode can take any of the following values: input- the selected physical line is used to input an electrical signal; output- the selected physical line is used to output an electrical signal. Sets the raw value of the selected line debouncer time. This feature controls the current electrical format of the selected physical input or output Line. Line Format can take any of the following values: No Connect: The Line is not connected. Tri-state: The Line is currently in Tri-state mode (Not driven). TTL: The Line is currently accepting or sending TTL level signals. LVDS: The Line is currently accepting or sending LVDS level signals. RS-422: The Line is currently accepting or sending RS-422 level signals. Opto-coupled: The Line is Opto-coupled. This boolean value enables the inverter function for the selected line. This boolean value indicates the current logical state for the selected line at the time of polling. This enumeration selects the internally generated camera signal (source signal) for the selected line. This boolean value sets the state of the selected user settable output signal. Note: X in property name must be substituted with the line number (0,1,2), e.g. Line1_LineMode. 12 Chapter 1. User Guide

17 1.8.7 TimerControls AutoFunctions Property Description TimerDura- This float value sets the time base (in microseconds) that is used when a timer duration is set with tiontime- baseabs the raw setting. TimerDe- This float value sets the time base (in microseconds) that is used when a timer delay is set with the laytime- baseabs raw setting. TimerX_TimerDelayRaw This value sets an integer that will be used as a multiplier for the timer delay timebase. The actual delay time equals the current timer delay raw setting times the current timer delay time base abs setting. TimerX_TimerDurationRaw This value sets an integer that will be used as a multiplier for the timer duration timebase. The actual duration time equals the current timer duration raw setting times the current timer duration time base abs setting. TimerX_TimerTriggerSource This enumeration sets the internal camera signal used to trigger the selected timer. Property AutoTargetValue Auto- Gain- RawLowerLimit Auto- Gain- RawUpperLimit Description The target average gray value may range from nearly black to nearly white. Note that this range of gray values applies to 8 bit and to 16 bit (12 bit effective) output modes. Accordingly, also for 16 bit output modes, black is represented by 0 and white by 255. Lower limit of the Auto Gain (Raw) parameter Upper limit of the Auto Gain (Raw) parameter 1.8. Camera Configuration in Scorpion 13

18 14 Chapter 1. User Guide

19 1.8.9 TransportLayer Property Gev- Heart- beat- Timeout Packet Size Packet Delay Frame Transmission Delay Bandwidth Reserve % Bandwidth Reserve Accumulator (RO) Actual Bandwidth (RO) Actual Bandwidth Description This value sets the heartbeat timeout in milliseconds. StreamChannel0_GevSCPSPacketSize. If using other packet size than default (1500), unless you have already set the packet size for your network adapter during the installation of the Pylon AreaScan software, check the documentation for your adapter to determine the maximum packet size (sometimes called frame size) that the adapter can handle. Many adapters can handle what is known as jumbo packets or jumbo frames. These are packets with a maximum size of 16 kb. Once you have determined the maximum size packets the adapter can handle, make sure that the adapter is set to use the maximum packet size. StreamChannel0_GevSCPD. Sets delay in ticks between packets sent by the camera. Applies to the selected stream channel. Increasing the inter-packet delay will decrease the camera s effective data transmission rate and will thus decrease the network bandwidth used by the camera. In the current camera implementation, one tick=8ns. StreamChannel0_GevSCFTD. Sets a delay in ticks (one tick = 8 ns) between when a camera would normally begin transmitting an acquired frame and when it actually begins transmission. This parameter should be set to zero in most normal situations. If you have many cameras in your network and you will be simultaneously triggering image acquisition on all of them, you may find that your network switch or network adapter is overwhelmed if all of the cameras simultaneously begin to transmit frame data at once. The frame transmission delay parameter can be used to stagger the start of frame data transmission from each camera. StreamChannel0_GevSCBWR. Used to reserve a portion of the assigned bandwidth for packet resends and for the transmission of control data between the camera and the host PC. The setting is expressed as a percentage of the Bandwidth Assigned parameter. For example, if the Bandwidth Assigned parameter indicates that 30 MByte/s have been assigned to the camera and the Bandwidth Reserve parameter is set to 5%, then the bandwidth reserve will be 1.5 MByte/s. StreamChannel0_GevSCBWRA. A software device called the bandwidth reserve accumulator is designed to handle unusual situations such as a sudden EMI burst that interrupts a frame transmission. If this happens, a larger than normal number of packet resends may be needed to properly transmit a complete frame. The accumulator is basically an extra pool of resends that the camera can use in unusual situations. StreamChannel0_GevSCBWA. Indicates the bandwidth in bytes per second that will be used by the camera to transmit frame and chunk feature data and to handle resends and control data transmissions. The value of this parameter is a result of the packet size and the inter-packet delay parameter settings. Note: Sum of bandwidth for all cameras on the same NIC must not exceed 125MB/s on a gigabit network. Otherwise frame overruns may occur. StreamChannel0_GevSCDCT. Indicates the actual bandwidth (in bytes per second) that the camera will use to transmit the image data and chunk data (if any) in each frame given the current frame size, chunk feature settings, and the pixel format setting. (RO) Frame StreamChannel0_GevSCFJM. If the Bandwidth Reserve Accumulation parameter is set to a high value, Max the camera can experience a large burst of data resends during transmission of a frame. This burst of Jitter resends will delay the start of transmission of the next acquired frame. The Frame Max Jitter parameter (RO) indicates the maximum time in ticks (one tick = 8 ns) that the next frame transmission could be delayed due to a burst of resends Camera Configuration in Scorpion 15

20 Driver Specific Properties Some property names are handled generic by the driver indipendent of actual camera. In addition some properties are Property Description LogLevel debug level, [0..3] Continous boolean, video stream continouse mode, passing all frames to Scorpion regardless of grab command Reset perform camera reset, property value don t care Framerate maps to AcquisitionFrameRate or AcquisitionFrameRateAbs due to GigE or USB camera Exposure maps to ExposureTimeAbs Shutter maps to ExposureTimeAbs Gain maps to All_GainRaw Brightness maps to All_BlackLevelRaw Gamma scaled by 1000 due to configuratin dialog PixelSize 1, 3 or 4 due to mono or color images MemoryUsed memory currently used by driver (debug only) FrameCount number of received frames (debug only) 1.9 Setting properties with Python All properties accessible through configuration dialog can also be read via python. Most of them can be modified as well. The exception is read only properties. Some properties are always in read only state, the others are read only when camera is open (e.g. width or height). The latter can be modified via configuration dialog. There are two api functions to access properties in Python. The preferred method is executecmd. It allows to set/get any value regardless of its type. Also available is get/setproperty - an older method, operating with integer values only. In any case parameter name must be provided. Parameter names can be looked up in configuration dialog: cam=getcamera('0') cam.executecmd('set', 'Framerate=7.7') # set framerate to new float value print cam.executecmd('get', 'Framerate') # prints "7.7" print cam.getproperty('framerate') # prints "7" print cam.setproperty('framerate', 8) # set new framerate value print cam.executecmd('get', 'Framerate') # prints "8" print cam.getproperty('framerate') # prints "8" #below all three commands achieve the same result. cam.executecmd('set', 'FrameStart_TriggerActivation=Falling Edge') cam.executecmd('set', 'FrameStart_TriggerActivation=1') cam.setproperty'framestart_triggeractivation', 1) Note. For enumeration properties (comboboxes in dialog) either entry name or sequential number of the entry must be used. The entry name must exactly match the one displayed in configuration dialog. 16 Chapter 1. User Guide

21 1.10 Chunk Mode In Chunk mode at the beginning of each frame some additional information is attached - timestamp, framecounter and more. To enable chunk mode - open camera properties dialog and enable ChunkModeActive under ChunkDataStreams section. Press Apply. Then some individual chunk parameters can be enabled/disabled. Not all parameters are the same accross different cameras. Accessing chunk data can be done by two ways - via configuration dialog or via python script: execcmd= GetCamera('0').ExecuteCmd print "timestamp=", execcmd('get', 'ChunkTimestamp') print "framecount=", execcmd('get', 'ChunkFramecounter') print "triggercount=", execcmd('get', 'ChunkTriggerinputcounter') The particular names of chunk parameters can be obtained from configuration dialog ChunkData section Chunk Mode 17

22 Note: Chunk data ChunkFramecounter or ChunkTriggerinputcounter can be used to verify that no frame is missed. These are counters that will be advanced by 1 with each new frame. Hint Click bold link to download drivers zip package 18 Chapter 1. User Guide

23 CHAPTER 2 Release notes Documentation release notes: dec2018, RL, pylon dec2018, RL, pylon 4.0 fixed property access for enum parameters add support for Pylon4 ( ) fixed property access for enum parameters add support for Pylon4 ( ) dec2017, RL, pylon 5.0 fixed property access for Gamma - scaled x nov2017, LL, pylon 5.0 Framerate parameter is an alias for AcquisitionFrameRate and AcquisitionFrameRateAbs MemoryUsed parameter returns working set memory in megabytes (obtained by GetProcessMemoryInfo) chunk parameters updated only when ChunkModeActive enabled in camera parameters important - camera device reset with command setproperty( reset, 1) dec2016, LL, pylon 4.2 build of the last version ( ) for pylon dec2016, LL, pylon 5.0 chunk data parameters ExecuteCmd support for parameter setting and retrieval dynamic parameter update for pylon parameters which can change value frequently grab loop changed 19

24 oct2015, LL, pylon 4.x modified algorithm for restore section search oct2015, LL, pylon 4.x ignoring $Camera setting, thus any camera reuse given port-numbered section from ini file apply parameters on camera open takes max 5 iterations, or until there are parameters not set apply parameters in configure dialog take list of modified/touched parameters, only 1 iteration api functions for testing apr2015, LL, pylon 4.x include non-readable camera parameters in order to avoid need for double load camera initialization software trigger checking modified to have better compatibility apr2015, LL, pylon 4.x Apply button in camera property dialog fixed drop-down lists for enumerated items in properties dialog mar2015, LL, pylon 4.x usb camera support heartbeat and camera reconnect parameters parameter loading fixed Minimum Scorpion Vision Software version: 9.x Links to all Scorpion camera drivers: Camera Drivers 20 Chapter 2. Release notes

SCD-0002 Basler Pylon Area Documentation

SCD-0002 Basler Pylon Area Documentation SCD-0002 Basler Pylon Area Documentation Release XI Tordivel AS Mar 13, 2017 Contents 1 User Guide 3 2 Release notes 15 i ii Basler Pylon Scorpion supports Pylon from 2 to 5 SCD-0002-Basler-Pylon-Area

More information

SCD - Scorpion Camera Drivers Specification Documentation

SCD - Scorpion Camera Drivers Specification Documentation SCD - Scorpion Camera Drivers Specification Documentation Release XI Tordivel AS Jun 08, 2018 Contents 1 Camera configuration persistance 3 2 New in Scorpion XI port-based configuration 5 3 Camera Properties

More information

JAI SDK Software Development Kit and Control Tool

JAI SDK Software Development Kit and Control Tool JAI SDK Software Development Kit and Control Tool Document Version: A Document P/N: 10671 JAI SDK - Getting Started Guide Table of Contents Table of Contents... iii 1 General... 5 2 Downloading the software...

More information

Camera control software GigaCam

Camera control software GigaCam Camera control software GigaCam Operation Manual Version 1.06 CONTENTS 1. Starting the software... 3 2. Discovery the Camera... 4 3. Open the Camera... 5 4. Image setting... 6 5. Acquisition start / stop...

More information

SCD - Scorpion Camera Drivers Documentation

SCD - Scorpion Camera Drivers Documentation SCD - Scorpion Camera Drivers Documentation Release XI Tordivel AS Nov 05, 2017 Contents 1 SCD-0018 Network Camera 3 1.1 Examples................................................. 5 1.2 Release Notes..............................................

More information

JAI SDK Software Development Kit and Control Tool

JAI SDK Software Development Kit and Control Tool JAI SDK Software Development Kit and Control Tool Document Version: E Document P/N: 10671 JAI SDK - Getting Started Guide Table of Contents Table of Contents... iii 1 General... 4 2 Downloading the software...

More information

Technical Resource. Genie Nano Camera Configuration

Technical Resource. Genie Nano Camera Configuration Technical Resource Genie Nano Camera Configuration Teledyne DALSA Incorporated Industrial Products Copyright 2016 Teledyne DALSA, Inc. http://www.teledynedalsa.com/visionsystems Genie Nano Configuration

More information

Bandwidth under control with IDS GigE Vision cameras

Bandwidth under control with IDS GigE Vision cameras Bandwidth under control with IDS GigE Vision cameras GigE Vision cameras transmit image data in small packets over the network, even before a captured sensor image is read out completely. This minimizes

More information

INTERNAL USE ONLY (Set it to white if you do not need it)

INTERNAL USE ONLY (Set it to white if you do not need it) APPLICATION NOTE Interfacing Basler GigE and USB3 Vision Cameras with Matrox Imaging Library (MIL) Applicable to Vision Interface Standard cameras and Windows operating systems only Document Number: AW000648

More information

Smaller, faster, stronger, cheaper. Better in every way that matters.

Smaller, faster, stronger, cheaper. Better in every way that matters. Genie TM Nano Smaller, faster, stronger, cheaper. Better in every way that matters. Please Contact Vision Systems Technology, A Teledyne Dalsa Distributor www.visionsystech.com 858-449-1562 sales@visionsystech.com

More information

Using USB3 Vision Cameras with National Instruments' Vision Acquisition Software

Using USB3 Vision Cameras with National Instruments' Vision Acquisition Software Using USB3 Vision Cameras with National Instruments' Vision Acquisition Revised Applicable Products 2 Application Note Description 2 Preparing for Use 2 Understanding USB3 Vision 3 Installation and Configuration

More information

INTERNAL USE ONLY (Set it to white if you do not need it)

INTERNAL USE ONLY (Set it to white if you do not need it) APPLICATION NOTE Interfacing Basler GigE and USB3 Vision Cameras with Stemmer Imaging Common Vision Blox (CVB) Applicable to Vision Interface Standard cameras and Windows operating systems only Document

More information

Video capture using GigE Vision with MIL. What is GigE Vision

Video capture using GigE Vision with MIL. What is GigE Vision What is GigE Vision GigE Vision is fundamentally a standard for transmitting video from a camera (see Figure 1) or similar device over Ethernet and is primarily intended for industrial imaging applications.

More information

Coyote. Software Guide

Coyote. Software Guide Coyote Software Guide Simply connect Version 2.4 These products are not intended for use in life support appliances, devices, or systems where malfunction of these products can reasonably be expected

More information

Optimizing Performance: Intel Network Adapters User Guide

Optimizing Performance: Intel Network Adapters User Guide Optimizing Performance: Intel Network Adapters User Guide Network Optimization Types When optimizing network adapter parameters (NIC), the user typically considers one of the following three conditions

More information

...high-performance imaging data and video over Ethernet

...high-performance imaging data and video over Ethernet Quick Start Guide ...high-performance imaging data and video over Ethernet Ver 2.4 Item number: 222A000000002 Product code: PT1000DOC-QSG The products are not intended for use in life support appliances,

More information

Basler pylon. APPLICATION NOTE How to use the Basler pylon GenTL Producers for Basler GigE and USB 3.0 Cameras with MathWorks MATLAB

Basler pylon. APPLICATION NOTE How to use the Basler pylon GenTL Producers for Basler GigE and USB 3.0 Cameras with MathWorks MATLAB Basler pylon APPLICATION NOTE How to use the Basler pylon GenTL Producers for Basler GigE and USB 3.0 Cameras with MathWorks MATLAB Document Number: AW001343 Version: 03 Language: 000 (English) Release

More information

GigE Vision Cameras. Key Features. Dimension (Unit : mm) Pin map (H/W Rev 2.0 이상 ) LED Indicator. back Pannel. Download (File name)

GigE Vision Cameras. Key Features. Dimension (Unit : mm) Pin map (H/W Rev 2.0 이상 ) LED Indicator. back Pannel. Download (File name) GigE Vision Cameras Key Features (Unit : mm) Mini-size CCD / CMOS GigE camera Camera standard - GenICam, GigE Vision Trigger input range : +3.3V~24V(Photo coupler) PoE 지원 (2Tap 모델제외 ) Pin map (H/W Rev

More information

APPLICATION NOTE. Getting Started with pylon and OpenCV

APPLICATION NOTE. Getting Started with pylon and OpenCV APPLICATION NOTE Getting Started with pylon and OpenCV Applicable to all Basler USB3 Vision, GigE Vision, and IEEE 1394 cameras Document Number: AW001361 Version: 01 Language: 000 (English) Release Date:

More information

PC Vision Wiring Guide

PC Vision Wiring Guide PC Vision Wiring Guide TTL TTL OPTO OPTO +V S T S T S+ S- T+ T- S+ S- T+ B- +V POWER OUTPUT +V POWER OUTPUT STRB/TRIG STRB/TRIG STROBE TRIGGER O STROBE TRIGGER A/B A/B A/B A/B +V A B A B A+ A- B+ B- A+

More information

Basler. CMOSIS models with Camera Link and up to 340 fps

Basler. CMOSIS models with Camera Link and up to 340 fps Basler Area Scan Cameras CMOSIS models with Camera Link and up to 340 fps Ground-breaking price starting at 299 euros Gigabit Ethernet interface with PoE Camera Link interface for high throughput with

More information

XCG-5005E XCG-5005CR XCG-U100E XCG-U100CR

XCG-5005E XCG-5005CR XCG-U100E XCG-U100CR XC (TV Format) XC (Non-TV Format) XCG XCL FCB-SD FCB-HD FCB-4K DIGITAL VIDEO CAMERA MODULE XCG-5005E XCG-5005CR XCG-U100E XCG-U100CR GigE vision Partial Scan *4 RAW Color Progressive Scan Long *1: XCG-5005E/XCG-5005CR

More information

LgCam Software v6.4.0

LgCam Software v6.4.0 LgCam Software v6.4.0 Release Notes Release V6.4.0 1.1.1 API update from 2.1.1.14 to update 2.1.1.44 Improve frame rate reports Add more error detection in the color conversion process. Add support for

More information

Understanding the TOP Server ControlLogix Ethernet Driver

Understanding the TOP Server ControlLogix Ethernet Driver Understanding the TOP Server ControlLogix Ethernet Driver Page 2 of 23 Table of Contents INTRODUCTION 3 UPDATE RATES AND TAG REQUESTS 4 CHANNEL AND DEVICE CONFIGURATION 7 PROTOCOL OPTIONS 9 TAG GENERATION

More information

APPLICATION NOTE Compatibility of Basler Cameras with Third-Party Software Libraries

APPLICATION NOTE Compatibility of Basler Cameras with Third-Party Software Libraries APPLICATION NOTE Compatibility of Basler Cameras with Third-Party Software Libraries Applicable to Basler GigE Vision, USB3 Vision, Camera Link and IEEE 1394 cameras Document Number: AW001186 Version:

More information

Specim FX cameras Application Note

Specim FX cameras Application Note Application Note Specim FX cameras Application Note Version 1.0.0 from 09/07/2018 Author: Matthias Karl How to start using Specim FX series cameras This application note describes the necessary steps to

More information

XCG-5005E (B/W) XCG-5005CR XCG-U100E (B/W) XCG-U100CR XCG-SX99E (B/W) XCG-V60E (RAW Color)

XCG-5005E (B/W) XCG-5005CR XCG-U100E (B/W) XCG-U100CR XCG-SX99E (B/W) XCG-V60E (RAW Color) DIGITAL VIDEO CAMERA MODULE XCD XCG XCL micro FCB-HD FCB-SD XCG-55E (B/W) XCG-55CR XCG-U1E (B/W) XCG-U1CR XCG-SX99E (B/W) XCG-V6E (RAW Color) GigE vision *2 UXGA Sequential 4 Progressive Scan *5 SXGA LUT

More information

Basler aviator AREA SCAN CAMERAS

Basler aviator AREA SCAN CAMERAS Basler aviator AREA SCAN CAMERAS 1 to 4 megapixels and up to 120 fps Brilliant CCD color with 12 bit image quality High speed thanks to four tap sensor technology Outstanding performance OVERVIEW Fast

More information

This document outlines what is new with MIL s USB3 Vision system and explains the current limitations and particularities.

This document outlines what is new with MIL s USB3 Vision system and explains the current limitations and particularities. Matrox Imaging Library (MIL) 10.0 Update 30 Release Notes (MIL s USB3 Vision system) September, 2016 (c) Copyright Matrox Electronic Systems Ltd., 1992-2016. This document outlines what is new with MIL

More information

User Manual MV1-R G2 Camera Series

User Manual MV1-R G2 Camera Series User Manual MV1-R1280-50-G2 Camera Series Ultra low light CMOS camera with GigE interface MAN066 04/2015 V1.0 All information provided in this manual is believed to be accurate and reliable. No responsibility

More information

Basler. CMOSIS models with Camera Link and up to 340 fps

Basler. CMOSIS models with Camera Link and up to 340 fps Basler Area Scan Cameras CMOSIS models with Camera Link and up to 340 fps Ground-breaking price starting at 299 euros Gigabit Ethernet interface with PoE Camera Link interface for high throughput with

More information

Table of Contents. Getting Started. Automation Technology

Table of Contents. Getting Started. Automation Technology Page 1 of 17 Table of Contents Table of Contents... 1 Getting Started... 1 How to Configure the C3 camera by using example configuration files... 2 How to Configure the C3 camera manually... 2 Getting

More information

User Manual PCIE-1172/1174. Reference Manual

User Manual PCIE-1172/1174. Reference Manual User Manual PCIE-1172/1174 Reference Manual Copyright The documentation and the software included with this product are copyrighted 2016 by Advantech Co., Ltd. All rights are reserved. Advantech Co., Ltd.

More information

HiKE GigaCam. Operation Manual Version th May, Starting the software. Please double click "GigaCam.exe" on screen.

HiKE GigaCam. Operation Manual Version th May, Starting the software. Please double click GigaCam.exe on screen. HiKE GigaCam Operation Manual Version 1.01 12th May, 2008 1.Starting the software Please double click "GigaCam.exe" on screen. 2. Discovery the Camera Please click the "Search for connected device. --->

More information

Basler. CMOSIS models with Camera Link and up to 340 fps

Basler. CMOSIS models with Camera Link and up to 340 fps Basler Area Scan Cameras CMOSIS models with Camera Link and up to 340 fps Ground-breaking price starting at 299 euros Gigabit Ethernet interface with PoE Camera Link interface for high throughput with

More information

Introduction to TOP Server 5 Troubleshooting and Best Practices

Introduction to TOP Server 5 Troubleshooting and Best Practices Introduction to TOP Server 5 Troubleshooting and Best Practices Page 2 of 17 Table of Contents INTRODUCTION 3 Overview 3 TROUBLESHOOTING FEATURES 5 Event Log 5 Help Files 7 OPC Quick Client 8 System Tags

More information

MACHINE VISION. Turning vision into productivity Ver. 1

MACHINE VISION. Turning vision into productivity Ver. 1 MACHINE VISION Turning vision into productivity 2017 Ver. 1 COMPANY INTRODUCTION Industry 4.0 and industry automation is a buzz world in recent years. Dahua Technology, the world leading supplier in Video

More information

Basler. Aegis Electronic Group. Fully Digital, Attractively Priced

Basler.   Aegis Electronic Group. Fully Digital, Attractively Priced Basler Fully Digital, Attractively Priced BASLER SCOUT LIGHT scout light Series Are You Looking for a Cost-effective Digital FireWire Camera? Basler scout light Family 4 Different Models Sophisticated

More information

Basler aviator. QUICK INSTALLATION GUIDE FOR GigE CAMERAS. Document Number: AW Version: 03 Language: 000 (English) Release Date: 15 January 2015

Basler aviator. QUICK INSTALLATION GUIDE FOR GigE CAMERAS. Document Number: AW Version: 03 Language: 000 (English) Release Date: 15 January 2015 Basler aviator QUICK INSTALLATION GUIDE FOR GigE CAMERAS Document Number: AW000977 Version: 03 Language: 000 (English) Release Date: 15 January 2015 Preliminary The information in this document is preliminary

More information

Technical Note How to Deal with Frame Loss in GigE Vision Cameras

Technical Note How to Deal with Frame Loss in GigE Vision Cameras When using the GigE Vision Interface, a general purpose LAN card (NIC) is often used on the PC side. However, since the NIC card does not have built-in image processing functions, the CPU on host PC performs

More information

AcquisitionApplets. User Documentation. Acq_DualBaseAreaRGB for microenable 5 marathon/lightbridge VCL

AcquisitionApplets. User Documentation. Acq_DualBaseAreaRGB for microenable 5 marathon/lightbridge VCL AcquisitionApplets User Documentation Acq_DualBaseAreaRGB for microenable 5 marathon/lightbridge VCL AcquisitionApplets User Documentation Acq_DualBaseAreaRGB for microenable 5 marathon/lightbridge VCL

More information

XCL-SG Series. XCL-CG Series. Digital Camera Module Equipped with the Global Shutter CMOS Sensor

XCL-SG Series. XCL-CG Series. Digital Camera Module Equipped with the Global Shutter CMOS Sensor Digital Camera Module Equipped with the Global Shutter CMOS Sensor XCL-SG Series XCL-CG Series (B/W) C (Colour) 1.1-type 12.4 MP 20 fps Camera Link Key Features Camera Link Base Configuration (1/2/3 tap

More information

Basler. New: 1 Megapixel Camera. Innovative, Slim Design, Extremely 60 Frames

Basler. New: 1 Megapixel Camera. Innovative, Slim Design, Extremely 60 Frames Basler Innovative, Slim Design, Extremely Cost-effective New: 1 Megapixel Camera @ 60 Frames BASLER PILOT pilot Series Are You Looking for a Digital Camera That Combines Speed, High Image Quality, and

More information

NI-IMAQ VI Reference Help

NI-IMAQ VI Reference Help NI-IMAQ VI Reference Help June 2008, 370162K-01 The NI-IMAQ VI Reference Help is for NI-IMAQ driver software users. The NI-IMAQ VI Library, a series of virtual instruments (VIs) for using LabVIEW with

More information

PanelScan Integration Guide

PanelScan Integration Guide PanelScan Integration Guide P/N 83-9111020-02 Integration Guide Using the PanelScan Multi-Array PCB Traceability System Overview This document describes the configuration and use of PanelScan, a turnkey

More information

Using USB3 Vision Cameras with HALCON 11 in Windows

Using USB3 Vision Cameras with HALCON 11 in Windows Using USB3 Vision Cameras with HALCON 11 in Windows Technical Application Note TAN2014010 Revised Applicable Products 2 Application Note Description 2 Preparing for Use 2 Understanding USB3 Vision 3 Installation

More information

Digital Video Camera Module

Digital Video Camera Module A-DBK-100-11 (1) Digital Video Camera Module Technical Manual XCG-V60E XCG-SX97E XCG-U100E XCG-5005E 2009 Sony Corporation Table of Contents Overview Features... 3 Notes on Operation... 4 Typical CCD Phenomena...

More information

Basler. Fully Digital, Attractively Priced

Basler. Fully Digital, Attractively Priced Basler Fully Digital, Attractively Priced BASLER SCOUT LIGHT scout light Series Are You Looking for a Cost-effective Digital FireWire Camera? Basler scout light Family 4 Different Models Sophisticated

More information

Configuring Advanced Radio Settings on the WAP371

Configuring Advanced Radio Settings on the WAP371 Article ID: 5069 Configuring Advanced Radio Settings on the WAP371 Objective Radio settings are used to configure the wireless radio antenna and its properties on the wireless access point (WAP) device

More information

Karmin2 Stereo Camera

Karmin2 Stereo Camera Karmin2 Stereo Camera User Manual (v1.0) December 12, 2017 VISION TECHNOLOGIES Nerian Vision GmbH Gutenbergstr. 77a 70197 Stuttgart Germany Email: service@nerian.com www.nerian.com Contents 1 Available

More information

E3xA, E3xB, E3xC, E3xE

E3xA, E3xB, E3xC, E3xE ZL0140-0C Page 1 of 21 2017 Veris Industries USA 800.354.8556 or +1.503.598.4564 / support@veris.com 0717 Commissioning Guide Power Monitoring E34E E31 * E30E & E31E E34A E30 *The CE mark indicates RoHS2

More information

NEW: sca VGA resolution at 120 frames. Versatile, Fully Digital, Attractively Priced

NEW: sca VGA resolution at 120 frames. Versatile, Fully Digital, Attractively Priced NEW: sca640-120 VGA resolution at 120 frames Versatile, Fully Digital, Attractively Priced BASLER SCOUT scout Series Are You Looking for a Cost-effective Digital Camera that Supports 100 Meter Cable Lengths?

More information

CX Firmware Release Notes

CX Firmware Release Notes Page 1 of 19 Table of Contents C2-640-GigE... 3 Firmware Rev 1.1.1 (released 14 th May, 2014)... 3 Firmware Rev 1.2.0 (released 18 th September, 2014)... 3 Firmware Rev 1.3.0 (released 24 th May, 2017)...

More information

HART/ Modbus TCP Gateway GT200-HT-MT User Manual V 1.2 REV A SST Automation

HART/ Modbus TCP Gateway GT200-HT-MT User Manual V 1.2 REV A SST Automation HART/ Modbus TCP Gateway GT200-HT-MT User Manual V 1.2 REV A SST Automation E-mail: SUPPORT@SSTCOMM.COM WWW.SSTCOMM.COM Catalog 1 Product Overview... 4 1.1 Product Function...4 1.2 Product Features...

More information

User's Guide VL4119 ASI/IP VIDEO. June 12, 2007 Version 1.0.9

User's Guide VL4119 ASI/IP VIDEO. June 12, 2007 Version 1.0.9 User's Guide VL4119 ASI/IP VIDEO June 12, 2007 Version 1.0.9 These products are not intended for use in life support appliances, devices, or systems where malfunction of these products can reasonably be

More information

Basler ace QUICK INSTALLATION GUIDE

Basler ace QUICK INSTALLATION GUIDE Basler ace QUICK INSTALLATION GUIDE Document Number: AW000897 Version: 02 Language: 000 (English) Release Date: 10 March 2010 For customers in the U.S.A. This equipment has been tested and found to comply

More information

Release Notes for IDS Software Suite 4.90

Release Notes for IDS Software Suite 4.90 Release Notes for IDS Software Suite 4.90 Contents Introduction... 2 New products... 2 New camera families... 2 GigE ueye SE Rev. 4... 2 ueye SE USB 3.1 Gen. 1... 3 New camera models... 3 UI-3131LE VU,

More information

AcquisitionApplets. User Documentation. Acq_SingleFullAreaBayer for microenable 5 marathon/lightbridge VCL

AcquisitionApplets. User Documentation. Acq_SingleFullAreaBayer for microenable 5 marathon/lightbridge VCL AcquisitionApplets User Documentation Acq_SingleFullAreaBayer for microenable 5 marathon/lightbridge VCL AcquisitionApplets User Documentation Acq_SingleFullAreaBayer for microenable 5 marathon/lightbridge

More information

User Manual of Machine Vision GigE Camera. Machine Vision GigE Camera. User Manual UD.6L0201D2172A01

User Manual of Machine Vision GigE Camera. Machine Vision GigE Camera. User Manual UD.6L0201D2172A01 Machine Vision GigE Camera User Manual UD.6L0201D2172A01 1 User Manual COPYRIGHT 2015 Hangzhou Hikvision Digital Technology Co., Ltd. ALL RIGHTS RESERVED. Any and all information, including, among others,

More information

CC-SCTP: Chunk Checksum of SCTP for Enhancement of Throughput in Wireless Network Environments

CC-SCTP: Chunk Checksum of SCTP for Enhancement of Throughput in Wireless Network Environments CC-SCTP: Chunk Checksum of SCTP for Enhancement of Throughput in Wireless Network Environments Stream Control Transmission Protocol (SCTP) uses the 32-bit checksum in the common header, by which a corrupted

More information

APPLICATION NOTE. Basler Low Resolution Cameras: CCD to CMOS Migration Guide

APPLICATION NOTE. Basler Low Resolution Cameras: CCD to CMOS Migration Guide APPLICATION NOTE Basler Low Resolution Cameras: CCD to CMOS Migration Guide Document Number: AW001500 Version: 02 Language: 000 (English) Release Date: 9 July 2018 Contacting Basler Support Worldwide Europe,

More information

II. Principles of Computer Communications Network and Transport Layer

II. Principles of Computer Communications Network and Transport Layer II. Principles of Computer Communications Network and Transport Layer A. Internet Protocol (IP) IPv4 Header An IP datagram consists of a header part and a text part. The header has a 20-byte fixed part

More information

Aegis Electronic Group

Aegis Electronic Group Basler ace Area Scan Cameras Ground-breaking price on all interfaces USB 3.0 easiest way for plug and play Gigabit Ethernet interface with PoE Camera Link interface with PoCL Broad sensor selection: CCD,

More information

GigE Area Scan Camera

GigE Area Scan Camera GigE Area Scan Camera Quick Start Guide V1.0.0 ZHEJIANG DAHUA TECHNOLOGY CO.LDT Overview Abstract This manual described GigE Area Scan Camera, including product introduction, Structure, basic parameters

More information

NI-IMAQdx VI Reference Help

NI-IMAQdx VI Reference Help NI-IMAQdx VI Reference Help June 2008, 371969C-01 NI-IMAQdx driver software gives you the ability to acquire images with IEEE 1394 and GigE Vision cameras. This help file describes the VIs included in

More information

GigE Vision, Sony ICX625 CCD sensor, auto-iris, 15 fps

GigE Vision, Sony ICX625 CCD sensor, auto-iris, 15 fps Prosilica GC 2450 Sony ICX625 CCD sensor 15 fps at full resolution Rugged housing Video-type auto iris GigE Vision, Sony ICX625 CCD sensor, auto-iris, 15 fps Prosilica GC2450 is a 5.0 Megapixel camera

More information

APPLICATION NOTE. How to Use the Basler pylon USB 3.0 AIK Adapter with Cognex VisionPro

APPLICATION NOTE. How to Use the Basler pylon USB 3.0 AIK Adapter with Cognex VisionPro APPLICATION NOTE How to Use the Basler pylon USB 3.0 AIK Adapter with Cognex VisionPro Document Number: AW001320 Version: 07 Language: 000 (English) Release Date: 18 April 2018 Contacting Basler Support

More information

Manta G-917. Description. 9.2 Megapixel GigE compliant machine vision camera. Benefits and features:

Manta G-917. Description. 9.2 Megapixel GigE compliant machine vision camera. Benefits and features: Manta G-917 Versatile 9.2 Megapixel camera 10.1 fps at full resolution Power over Ethernet option Video-iris lens control Description 9.2 Megapixel GigE compliant machine vision camera Manta G-917 is a

More information

Test Applet. User Documentation. FrameGrabberTest for microenable 5 AQ8-CXP6B

Test Applet. User Documentation. FrameGrabberTest for microenable 5 AQ8-CXP6B Test Applet User Documentation FrameGrabberTest for microenable 5 AQ8-CXP6B Test Applet User Documentation FrameGrabberTest for microenable 5 AQ8-CXP6B Applet Characteristics Applet FrameGrabberTest Applet

More information

Basler. Area Scan Cameras

Basler. Area Scan Cameras Basler Area Scan Cameras VGA to 2 megapixels and up to 120 fps Selected high quality CCD and CMOS sensors Gigabit Ethernet and IEEE 1394b interfaces Perfect fit for a variety of applications - extremely

More information

Test Applet. User Documentation. FrameGrabberTest for microenable 5 marathon AF2

Test Applet. User Documentation. FrameGrabberTest for microenable 5 marathon AF2 Test Applet User Documentation FrameGrabberTest for microenable 5 marathon AF2 Test Applet User Documentation FrameGrabberTest for microenable 5 marathon AF2 Applet Characteristics Applet FrameGrabberTest

More information

Optimizing the GigE transfer What follows comes from company Pleora.

Optimizing the GigE transfer What follows comes from company Pleora. Optimizing the GigE transfer What follows comes from company Pleora. Selecting a NIC and Laptop Based on our testing, we recommend Intel NICs. In particular, we recommend the PRO 1000 line of Intel PCI

More information

TCP Strategies. Keepalive Timer. implementations do not have it as it is occasionally regarded as controversial. between source and destination

TCP Strategies. Keepalive Timer. implementations do not have it as it is occasionally regarded as controversial. between source and destination Keepalive Timer! Yet another timer in TCP is the keepalive! This one is not required, and some implementations do not have it as it is occasionally regarded as controversial! When a TCP connection is idle

More information

Basler ace AREA SCAN CAMERAS Best price/performance ratio

Basler ace AREA SCAN CAMERAS Best price/performance ratio AREA SCAN CAMERAS Best price/performance ratio USB 3.0 easiest way for plug and play Gigabit Ethernet interface with PoE Link interface with PoCL Broad sensor selection: CCD, CMOS, NIR versions OVERVIEW

More information

Prosilica GC 1380H. GigE Vision, Sony ICX285 EXview CCD sensor, auto-iris, 30 fps. Benefits and features: Options:

Prosilica GC 1380H. GigE Vision, Sony ICX285 EXview CCD sensor, auto-iris, 30 fps. Benefits and features: Options: Prosilica GC 1380H Sony ICX285 CCD sensor 30 fps at full resolution Rugged housing Video-type auto iris GigE Vision, Sony ICX285 EXview CCD sensor, auto-iris, 30 fps Prosilica GC1380H is a 1.4 Megapixel

More information

Using the Cable Monitor Tool

Using the Cable Monitor Tool APPENDIX B This appendix describes the Cisco ubr905 and Cisco ubr925 cable access routers Cable Monitor tool. The Cable Monitor is part of the router s onboard software that provides a web-based diagnostic

More information

Aegis Electronic Group NEW: sca Versatile, Fully Digital, Attractively Priced 1.2 megapixels at 32 frames

Aegis Electronic Group NEW: sca Versatile, Fully Digital, Attractively Priced 1.2 megapixels at 32 frames Versatile, Fully Digital, Attractively Priced NEW: sca1300-32 1.2 megapixels at 32 frames BASLER SCOUT scout Series Are You Looking for a Cost-effective Digital Camera that Supports 100 Meter Cable Lengths?

More information

Manta G-040. Description. GigE Vision camera featuring the Sony IMX287 CMOS sensor. Benefits and features:

Manta G-040. Description. GigE Vision camera featuring the Sony IMX287 CMOS sensor. Benefits and features: Manta G-040 Sony IMX287 CMOS sensor Power over Ethernet option Angled-head and board level variants Video-iris lens control Description GigE Vision camera featuring the Sony IMX287 CMOS sensor Manta G-040

More information

DAQ Electronics, Inc 262B Old New Brunswick Road, Piscataway, NJ

DAQ Electronics, Inc 262B Old New Brunswick Road, Piscataway, NJ DAQ Electronics, Inc 262B Old New Brunswick Road, Piscataway, NJ 08854-3756 DNP3 Server Configuration CallistoView version 5.0A This is a description of the unique DNP configuration dialogs and files in

More information

ADQ14-FWPD. User Guide. Author(s): Teledyne SP Devices Document ID: Classification: Public Revision: PA1 Print date:

ADQ14-FWPD. User Guide. Author(s): Teledyne SP Devices Document ID: Classification: Public Revision: PA1 Print date: ADQ14-FWPD User Guide Author(s): Teledyne SP Devices Document ID: 18-2074 Classification: Revision: Print date: 2018-04-06 Contents 1 Introduction 3 1.1 Definitions & Abbreviations...................................

More information

APPLICATION NOTES. Advanced Graphical Interface - AGI Internal PLC (CODESYS V3) SHENDONG

APPLICATION NOTES. Advanced Graphical Interface - AGI Internal PLC (CODESYS V3) SHENDONG APPLICATION NOTES Advanced Graphical Interface - AGI Internal PLC (CODESYS V3) SHENDONG CODESYS V3 logic running on AGI 300/400 series product Support of Modbus/TCP and RTU communication Use of remote

More information

Pro Series Cameras. Sentry360 Pro Series Configuration Guide

Pro Series Cameras. Sentry360 Pro Series Configuration Guide Sentry360 Pro Series Configuration Guide Camera Configuration Contents Changing Camera Settings:... 3 Info... 4 Network... 5 AE/AWB... 7 Image... 9 System... 10 Motion Detection... 11 H264... 12 Changing

More information

Manta G-505. Description. GigE Vision camera with the 5 Megapixel Sony ICX625 CCD sensor. Benefits and features:

Manta G-505. Description. GigE Vision camera with the 5 Megapixel Sony ICX625 CCD sensor. Benefits and features: Manta G-505 Versatile 5 Megapixel camera 15 fps at full resolution Power over Ethernet option Video-iris lens control Description GigE Vision camera with the 5 Megapixel Sony ICX625 CCD sensor Manta G-505

More information

CS 344/444 Computer Network Fundamentals Final Exam Solutions Spring 2007

CS 344/444 Computer Network Fundamentals Final Exam Solutions Spring 2007 CS 344/444 Computer Network Fundamentals Final Exam Solutions Spring 2007 Question 344 Points 444 Points Score 1 10 10 2 10 10 3 20 20 4 20 10 5 20 20 6 20 10 7-20 Total: 100 100 Instructions: 1. Question

More information

AcquisitionApplets. User Documentation. Acq_SingleCLHSx2AreaRAW for microenable 5 marathon AF2

AcquisitionApplets. User Documentation. Acq_SingleCLHSx2AreaRAW for microenable 5 marathon AF2 AcquisitionApplets User Documentation Acq_SingleCLHSx2AreaRAW for microenable 5 marathon AF2 AcquisitionApplets User Documentation Acq_SingleCLHSx2AreaRAW for microenable 5 marathon AF2 Applet Characteristics

More information

GigE Vision camera featuring the Sony IMX267 CMOS sensor, Pregius global shutter

GigE Vision camera featuring the Sony IMX267 CMOS sensor, Pregius global shutter Manta G-895 Latest Sony CMOS sensor Power over Ethernet option Angled head and board level variants Video-iris lens control Description GigE Vision camera featuring the Sony IMX267 CMOS sensor, Pregius

More information

า ษ ส อ า า ษ ษ ฮ.

า ษ ส อ า า ษ ษ ฮ. www.hikvisionweb.com า ษ ส อ า า ษ ษ ฮ GIGE Area Scan Camera CA Series High quality CCD or CMOS sensor with high resolution, high sensitivity, high signal-to-noise ratio, wide dynamic range, etc Support

More information

Prosilica GT. Description. 5.1 Megapixel machine vision camera with Sony IMX CMOS sensor. Benefits and features:

Prosilica GT. Description. 5.1 Megapixel machine vision camera with Sony IMX CMOS sensor. Benefits and features: Prosilica GT 2460 Versatile temperature range for extreme environments IEEE 1588 PTP Power over Ethernet P-Iris and DC-Iris lens control Description 5.1 Megapixel machine vision camera with Sony IMX CMOS

More information

GigE Vision camera featuring the Sony IMX287 CMOS sensor

GigE Vision camera featuring the Sony IMX287 CMOS sensor Manta G-040 Sony IMX287 CMOS sensor Power over Ethernet option Angled head and board level variants Video-iris lens control Description GigE Vision camera featuring the Sony IMX287 CMOS sensor Manta G-040

More information

Portable 2-Port Gigabit Wirespeed Streams Generator & Network TAP

Portable 2-Port Gigabit Wirespeed Streams Generator & Network TAP Portable 2-Port Gigabit Wirespeed Streams Generator & Network TAP NuDOG-301C OVERVIEW NuDOG-301C is a handheld device with two Gigabit ports for Ethernet testing. The main functions of NuDOG-301C include

More information

Prosilica GT. Description. 5.1 Megapixel CMOS camera for outdoor imaging - GigE Vision. Benefits and features: Options:

Prosilica GT. Description. 5.1 Megapixel CMOS camera for outdoor imaging - GigE Vision. Benefits and features: Options: Prosilica GT 2460 Versatile temperature range for extreme environments IEEE 1588 PTP Power over Ethernet P-Iris and DC-Iris lens control Description 5.1 Megapixel CMOS camera for outdoor imaging - GigE

More information

FlexNetViewer HD Management Utility

FlexNetViewer HD Management Utility FlexNetViewer HD Management Utility Copyright Copyright 2010 CONTEC CO., LTD. ALL RIGHTS RESERVED. No part of this document may be copied or reproduced in any form by any means without prior written consent

More information

User s Manual. EIB 741 EIB 742 External Interface Box for Connecting HEIDENHAIN Encoders

User s Manual. EIB 741 EIB 742 External Interface Box for Connecting HEIDENHAIN Encoders User s Manual EIB 741 EIB 742 External Interface Box for Connecting HEIDENHAIN Encoders July 2013 DOCUMENTATION... 5 FIRMWARE VERSION... 5 CHANGE HISTORY... 5 PART 1: FEATURES... 6 1 GENERAL DESCRIPTION

More information

CP30/G30/MC31 Firmware Version 3100 Known Issues

CP30/G30/MC31 Firmware Version 3100 Known Issues CP30/G30/MC31 Firmware Version 3100 Known Issues Introduction This document lists issues that have been identified with firmware version 3100 for the Kingfisher CP30/G30/MC31 modules. Where possible, workarounds

More information

GigE Vision camera featuring the Sony IMX273 CMOS sensor

GigE Vision camera featuring the Sony IMX273 CMOS sensor Manta G-158 Sony IMX273 CMOS sensor Power over Ethernet option Angled head and board level variants Video-iris lens control Description GigE Vision camera featuring the Sony IMX273 CMOS sensor Manta G-158

More information

Security Management System Infinova T-series Cameras SD Card Video Synchronization

Security Management System Infinova T-series Cameras SD Card Video Synchronization Security Management System Infinova T-series Cameras SD Card Video Synchronization Introduction Security Management System software supports automatic synchronization of video recorded on the video sources,

More information

LYNX GigE Software User s Manual

LYNX GigE Software User s Manual LYNX GigE Software User s Manual These products are not intended for use in life support appliances, devices, or systems where malfunction of these products can reasonably be expected to result in personal

More information

ICC. EtherNet/IP Client Driver Manual INDUSTRIAL CONTROL COMMUNICATIONS, INC Industrial Control Communications, Inc.

ICC. EtherNet/IP Client Driver Manual INDUSTRIAL CONTROL COMMUNICATIONS, INC Industrial Control Communications, Inc. INDUSTRIAL CONTROL COMMUNICATIONS, INC. EtherNet/IP Client Driver Manual October 30, 2014 2014 Industrial Control Communications, Inc. TABLE OF CONTENTS 1 EtherNet/IP Client... 2 1.1 Overview... 2 1.2

More information

UNIT IV -- TRANSPORT LAYER

UNIT IV -- TRANSPORT LAYER UNIT IV -- TRANSPORT LAYER TABLE OF CONTENTS 4.1. Transport layer. 02 4.2. Reliable delivery service. 03 4.3. Congestion control. 05 4.4. Connection establishment.. 07 4.5. Flow control 09 4.6. Transmission

More information

Unzip bias2.zip to the desired directory. LabVIEW's user.lib may be a good choice.

Unzip bias2.zip to the desired directory. LabVIEW's user.lib may be a good choice. BIAS Documentation Introduction BIAS is the program responsible for image acquisition and display, enabling asynchronous inspection of results and setting regions of interest for further automated analysis

More information