Here, we talk about three bus systems that combined cover a wide field in the digital camera world:
IEEE 1394 (FireWire)
IEEE 1394 is a serial bus system; it got its name from the standard IEEE 1394-1995 and was originally developed by Apple Computers under the name ADB (Apple Desktop Bus). Later it was called FireWire and, finding its way into Sony Notebooks and Desktop computers, i.Link.
A number of main advantages, such as hot plugging or bus self-configuration, were the reasons that 1394 established itself in (at least) the multimedia world. In particular, the combination camcorder and multimedia notebook is very common.
In this section, we discuss the fundamentals of the 1394 standard, as well as the 1394 digital camera specification, which naturally is very important for this image distribution chapter. Finally, we discuss how to get images into LabVIEW and IMAQ; by the way, we also do this for similar bus systems in the next sections. For more details see [26].
Fundamentals
The following enumeration summarizes the most outstanding features of 1394 (taken from [26] and slightly modified). Of these, the most important are discussed in the sections below.
Figure 3.3 shows a typical 1394 bus structure, illustrating some important issues regarding the bus topology:
[1] The cable length, as specified in the standard, has a maximum of 4.5 meters. However, there are cables on the market with a length of 10 meters and they work fine.
Figure 3.3. Typical 1394 Bus Structure with Single- and Multiport Devices
1394 Devices
Figure 3.4 shows how a 1394 PCI card is listed in the Windows Device Manager. It depends on the high-level protocol where other devices appear; for example, a camera may be listed under Imaging Devices. Repeaters are not listed in the Windows Device Manager.
Figure 3.4. Windows Device Manager Listing 1394 Devices
The next figures show some 1394 devices that use different high-level protocols. For example, Figure 3.5 shows a Zip100 drive and a hard drive that use the SBP2 protocol for mass storage devices. Both drives have two 1394 ports each.
Figure 3.5. 1394 Zip100 Drive and 1394 Hard Drive
The 1394 cameras are naturally of interest for this book. Figure 3.6 shows an example of a Sony 1394 digital camera, which also was used for an example in this book. The digital camera specification and protocol are discussed later in this chapter.
Figure 3.6. 1394 Video Camera
Figure 3.7 shows two 1394 repeaters, one of them without housing. The integrated circuit on the circuit board is the phy chip , responsible for the 1394 physical layer. Real 1394 devices need at least one additional IC, the link chip , responsible for the 1394 link layer. Important for the functionality of the bus is that the phy chip can be powered over the bus, thus enabling repeating functionality even when the device is powered off.
Figure 3.7. 1394 Repeater (1STT Components; www.1stt.com)
The link chip is shown in Figure 3.8 on the left circuit board. On the right board, the link layer as well as the transaction layer were integrated in an FPGA. Both boards represent examples of 1394 interface boards using the PC104 form factor.
Figure 3.8. 1394 PC104 Boards (1STT Components; www.1stt.com)
1394 Communications
As mentioned before, IEEE 1394 supports two data transfer types:
The bus bandwidth allocation is based on a 125 m s interval called the cycle period. In this interval, a mix of isochronous and asynchronous transactions can share the overall bus bandwidth. As shown in Figure 3.9, isochronous transfers are based on a 6-bit channel number, which are used by isochronous listeners to access reserved areas of memory buffer.
Figure 3.9. Isochronous and Asynchronous Transactions[26]
Asynchronous transfers target a particular node and are all together guaranteed a minimum of 20% of the overall bus bandwidth. This implies that a particular node is not guaranteed a particular bandwidth but is guaranteed fair access to the bus; this mechanism is explained later.
The resulting maximum data payload size for both asynchronous and isochronous transfers is shown in Table 3.2.
Table 3.2. Maximum Data Payload Size for Asynchronous and Isochronous Transfers
Cable Speed |
Maximum Data Payload Size (Bytes) |
|
---|---|---|
Asynchronous Transfers |
Isochronous Transfers |
|
100 Mbit/s |
512 |
1024 |
200 Mbit/s |
1024 |
2048 |
400 Mbit/s |
2048 |
4096 |
800 Mbit/s [ ] |
4096 |
8192 |
1.6 Gbit/s [ ] |
8192 |
16384 |
3.2 Gbit/s [ ] |
16384 |
32768 |
[ ] announced
[ ] planned
As indicated above, the hardware and software implementation is realized by four protocol layers , each equipped with a set of services for communication purposes with the application:
Read more about 1394 communication in [26].
1394 Cables, Connectors, and Signals
The IEEE 1394 standard cable consists of two 6-pin connectors and a single 6-pin cable. The connectors on both sides of the cable are identical, unlike other systems, e.g., USB.
Figure 3.10. 1394 6-Pin Connector (Plug and Socket)
Cross sections of this 6-pin connector (plug and socket) are shown in Figure 3.10. Two of the six wires carry bus power (VP and VG); the other four form two twisted wire pairs named TPA/TPA* and TPB/TPB*.
Figure 3.11. 1394 4-Pin Connector (Plug and Socket)
Later, a 4-pin connector was designed by Sony especially for hand-held or battery operated devices, for example, camcorders, since such devices do not need to draw power over the bus (Figure 3.11). These cables consist only of the two twisted wire pairs. Moreover, the small 4-pin connector fits better into small designs.
So, 1394 supports three different types of cables:
Figure 3.12 shows cross sections of the required cable types; naturally, the cables with 4-pin connectors and 6-pin connectors require only four conductors.
Figure 3.12. Cross Sections of 4-Conductor and 6-Conductor Cables
The signaling over the two twisted wire pairs is based on data strobe encoding (DSE); see Figure 3.13. If one of the twisted pairs carries the data, the other one carries a strobe signal, which can be used to derive a clock signal by an XOR operation. The main advantage of this encoding is that only one of the two signals changes state at a time, thereby reducing electromagnetic interference.
Figure 3.13. Data Strobe Encoding
1394 Bus Configuration
The main difference from other bus systems like USB is that 1394 can work without a host processor. This enables a number of configurations, such as direct data streaming from a camera to a hard drive if an appropriate protocol is installed on both devices. On the other hand, the bus has to perform a number of procedures:
A bus initialization or bus reset occurs when power is applied to a node or removed from a node or when a node is attached to or removed from the bus; these occurrences force all nodes to return to their initial states. This reset clears all topology from the nodes and prepares all nodes to begin the tree identification process.
The tree identification process redefines the topology of the bus in accordance with the new device situation. After the process, a single node will be the root node and therefore each port will be identified as a parent or a child. [2] Any node can become the root node regardless of where it connects into the network of nodes.
[2] A port identified as a child node points to a node that is farther away from the root.
After that, the self-identification process begins, during which all nodes select a unique physical ID and return self-ID packets that identify themselves and parameters that describe their capabilities. Figure 3.14 shows an example of a 1394 bus topology using a FireWire data analyzer.
Figure 3.14. Example of a 1394 Bus Topology
1394 Bus Management
After the completion of the configuration process, nodes have to be found to take over certain roles in the bus management process. The following tasks are defined in the 1394 specification:
Another process described here among the bus management features is arbitration , which means that each node is guaranteed fair access to the bus. Both isochronous and asynchronous arbitration processes are possible; the isochronous process simply guarantees a certain amount of bus bandwidth; therefore, we talk only about the asynchronous process.
The process of asynchronous fair arbitration is based on the following three items:
Power Management
The power distribution part of the 1394 specification defines four different types of node power classes:
For example, an industrial camera or a repeater is a power consumer; a video camcorder is a self-powered node.
1394 Digital Camera Specification
Especially interesting for our application field is the specification for 1394 cameras. You can download the entire document from www.baslerweb.com or www.1394ta.org.
Figure 3.15 shows an example of an isochronous stream packet carrying 4:4:4 YUV video data. The first two lines, containing the header and the header CRC, are identical in every isochronous stream packet; [3] the rest of the lines contain the video data payload.
[3] The content of the fields is not discussed here; read more about it in the specifications or in [26].
Figure 3.15. Isochronous Stream Packet (Video Data YUV 4:4:4)
Another important field is the setting of some important camera values (here called features), such as Brightness, Sharpness, Hue, Saturation, Focus, Zoom, and some more, which are located in the register area. Again, details can be obtained from the specifications; but we see in the next section that a detailed knowledge of these issues is not important, because LabVIEW performs a number of tasks for us.
1394 Images in LabVIEW
Using images from 1394 cameras in LabVIEW and IMAQ Vision is easy since National Instruments released a special plug-in for IMAQ Vision called "IMAQ Vision for 1394 Cameras." If this tool is installed, the IMAQ Vision Builder offers an additional acquisition module called "NI-IMAQ for IEEE-1394." If this module is selected, images can be acquired from the 1394 camera just as from any other vision device.
Definitely more interesting is that some properties of the camera, such as Zoom, Focus, Brightness, and others, can directly be set by a control in the IMAQ Vision Builder (see Figure 3.16). The camera then reacts immediately to the property change. Of course, this is also possible directly from LabVIEW; we try it in the following exercise.
Figure 3.16. 1394 Camera Image and Properties in IMAQ Vision Builder
Exercise 3.1: 1394 Camera Images (1394 camera required).
Create a LabVIEW program that captures an image from a 1394 camera and changes some camera attributes. For the image capturing use the functions IMAQ1394 Grab Setup , IMAQ1394 Grab Acquire , and IMAQ1394 Close (see Figure 3.17).
The properties of the camera can be changed with the function IMAQ Vision Attribute . The camera property is selected with the Attribute control and the value can be transmitted by the respective slider control.
Figure 3.17. Setting 1394 Camera Properties in LabVIEW
In general, 1394 cameras are a great opportunity for vision engineers , especially if you consider the digital image transfer, the asynchronous transmission of camera properties, and the camera power supply, all of them using a single 6-wire serial cable.
Universal Serial Bus (USB)
The Universal Serial Bus (USB) was intended to make an end with the number of PC interfaces: There were (and still are!) the serial (or RS-232) port, the parallel port, PS/2 ports for keyboard and mouse, and some other interfaces inside the PC itself. The main idea was to use only a single interface (e.g., USB) for all these connections.
The reason why this vision has not come true was the relatively low data rate of 12 Mbit/s, which has turned out to be a major disadvantage of USB, especially if mass storage devices (hard drives or CD writers) are connected to a system.
Anyway, USB is established with a certain number of devices, such as mice, some disk drives, keyboards, and (of interest for us) cameras. In the following sections, I explain some fundamentals and key data of USB, some examples of USB devices, and some details, which include the physical, the signaling, and the data environment. Finally, I mention the new standard USB 2.0 and what it means to the existing USB world.
Fundamentals
USB can connect up to 127 devices with a host. The USB standard 1.1 distinguishes between two types of devices:
Figure 3.18 shows how these devices are listed in the Windows Device Manager: the USB controller itself, which today is usually integrated in the PC main board, the USB root hub, and the devices (here a mass storage device) appear in the same submenu.
Figure 3.18. Windows Device Manager Listing USB Devices
This structure can again be seen in Figure 3.19. The controller, usually a PCI card, integrates the USB host controller and the USB root hub, to which all other devices or hubs must be connected.
Figure 3.19. USB Hub Types [27]
Figure 3.19 also shows that the USB structure is a tree type; starting at the host (root), the additional hubs or devices form branches or leaves . Therefore, as shown in Figure 3.20, two data directions can be specified:
Figure 3.20. USB Hub Performing Downstream and Upstream Connectivity [27]
Two different types of plugs ensure that these directions cannot be mixed; mixing them would result in a forbidden loop structure: in the upstream direction the well-known (flat) A-plug, and downstream the almost quadratic B-plug. Read more about cables and plugs in Physical Environment .
Another limitation (besides the maximum of 127 devices) is the number of tree levels, which is limited to seven, including the root hub. This implies that the number of hubs connected logically in series is limited to five.
USB Devices
Any USB communication can be performed at one of two (three with USB 2.0) speed levels:
This results in a number of tasks that USB hubs have to perform. (Figure 3.21 shows a typical USB hub.) Usually a hub has to do the following tasks:
Figure 3.21. USB Hub with Four Ports
[4] A device that performs only this function is called a "repeater.".
Moreover, the USB specification defines a number of device classes, which are listed below. This list is taken from [27] and does not give any information about the definition state of the device classes; that means that some specifications are not yet released.
Figure 3.22 shows an example for a USB camera and for a USB mass storage device.
Figure 3.22. USB Mass Storage Device and USB Camera
Physical Environment
The cross section of USB cables is shown in Figure 3.23. The cable on the left is intended only for low speed (1.5 Mbit/second) and does not require shielding. For low speed, the cable length should not exceed three meters.
Figure 3.23. Cross Sections of Low-Speed and High-Speed USB Cables [27]
Full speed (12 Mbit/second) USB cables must be both shielded and twisted pair for the differential data lines (right side of Figure 3.23). The maximum cable length for full speed is five meters if the signal propagation delay is equal to or less than 30 ns over the entire cable length. If the propagation delay is higher, the cable must be shortened [27].
The other two wires that can be seen in the cross sections carry cable power, which is 5 Vdc and can provide from 100 to 500 mA. A number of peripherals do not need this cable power, for example, printers. Finally, Figure 3.24 shows a USB cable illustrating both an A- and a B-plug.
Figure 3.24. USB Cable with A- and B-Plug
Signaling Environment
The USB standard uses a special type of data encoding called NRZI (non-return to zero, inverted). This encoding and the use of differential signaling, which is shown in Figure 3.25, ensure data integrity and significantly decreases noise problems.
Figure 3.25. USB Cables Using NRZI Encoding and Differential Signaling [27]
Other tasks are performed by the monitoring of the differential data lines:
You can find more details about NRZI in [27].
Figure 3.26 shows the NRZI data encoding itself. The Data line shows the original data, and the NRZI line contains the encoded data; the NRZI signal remains at its status when data is 1 and changes status when data is 0.
Figure 3.26. NRZI Encoding [27]
A problem may occur if the data contains a large number of consecutive 1s. Therefore, after six consecutive 1s, a transition of the NRZI signal is forced, thereby ensuring that the receiver can detect a transition in the NRZI signal at least at every seventh bit. The transition is forced by additional bits in the data stream, resulting in a stuffed data stream. This method is called bit stuffing .
Data Environment
The USB specification defines four transfer types [27]:
Individual transfers consist of a number of packets, which are themselves combined with transactions. Packets are categorized into four types:
The transactions are divided into three categories:
Moreover, the communication at the application level takes place over pipes , which act as logical channels and connect the application with a virtual end point at the USB device, no matter whether the device is connected directly to the root hub or to one or more additional hubs.
You can read more about pipes, transfers, transactions, and packets in [27].
USB 2.0
Version USB 2.0 of the Universal Serial Bus adds the following amendments to the standard:
The other principles of the standard as well as the cables remain unchanged.
USB Images in LabVIEW
Getting images from USB cameras into LabVIEW and IMAQ Vision is not as easy as it is with 1394 cameras; the reason is simple: IMAQ Vision does not support USB. Here, we have to use some tricks, providing the following functions:
For functions 1 and 2, we need additional software:
Figure 3.27. Importing USB Camera Images in LabVIEW
With this equipment, we can do the following exercise.
Exercise 3.2: USB Camera Images (USB camera and additional software required).
Create a LabVIEW VI that captures an image from a USB camera (Figure 3.27). Use a special software tool (e.g., graphedt) for the image display and another (e.g., ImageXpress) for the capture.
After importing the ImageXpress ActiveX control into LabVIEW, use the methods Capture and Copy through two LabVIEW Invoke Nodes. Note that the image, which should be captured and copied , must be placed over the ActiveX control in the LabVIEW Front Panel window. For optimization, the control itself can be resized to fit the display window.
Once the image is stored in the clipboard, it can be transferred into an IMAQ Window with the function IMAQ ClipboardToImage . See Figure 3.27 for further details.
Camera Link
Although Camera Link is not really a bus system ”because it is only used for connecting a digital camera to a frame grabber ”it is discussed. The Camera Link interface is important for digital video systems because it allows really high data rates.
Figure 3.25 on page 102 shows the use of differential signaling for USB purposes. The main advantage of this technology is immunity from disturbance and interference signals from outside of the cable area. Imagine a disturbance signal that influences both of the signal wires; because only the signal difference of these two wires is used, the disturbance signal is (more or less) deleted in the subtraction result.
Camera Link uses this technology as well. Here, a standard called low voltage differential signaling (LVDS) is used for the cable transmission. National Instruments introduced a system called Channel Link , consisting of a transmitter (converting 28 bits of CMOS/TTL data into four LVDS streams) and a receiver (converting the streams back to CMOS/TTL). In addition, a phase-locked clock is transmitted over a fifth LVDS stream. The major advantage is the significant reduction of the number of wires from the transmitter to the receiver, resulting in smaller connectors and cable outlines.
Figure 3.28 shows the base configuration of the Camera Link interface, which is based on Channel Link. In this configuration, a single transmitter/receiver pair is used together with four separated LVDS streams reserved for general-purpose camera control and two LVDS pairs reserved for serial communication between camera and frame grabber.
Figure 3.28. Camera Link Block Diagram (Base Configuration)
The base configuration, using a single transmitter/receiver pair, is limited to 28 bits of video data, which may not be sufficient for all purposes. Figure 3.29 shows the extension of the Camera Link interface to a medium configuration, which includes another transmitter/receiver pair, and to a full configuration, using in total three Channel Link transmitter/receiver pairs.
Figure 3.29. Camera Link Block Diagram (Extension for Medium and Full Configuration)
Table 3.3. Camera Link Configurations
Camera |
Ports A,B,C |
Ports D,E,F |
Ports G,H |
|
---|---|---|---|---|
Control Lines |
(X0-X3, Xclk) |
(Y0-Y3, Yclk) |
(Z0-Z3, Zclk) |
|
Base configuration: |
Yes |
Yes |
||
Medium configuration: |
Yes |
Yes |
Yes |
|
Full configuration: |
Yes |
Yes |
Yes |
Yes |
Table 3.3 is an overview of all three possible configurations. The base configuration requires one single MDR cable; medium and full configuration both require two MDR cables.
Camera power is not provided through the Camera Link connectors, but it can be supplied to the camera through a separate connector. In fact, most of the camera manufacturers use their own standards.
You can get more information about Camera Link from a number of suppliers, for example, from www.basler-mvc.com.
Comparison of Digital Camera Interfaces
Now that we have discussed the most important bus systems for imaging applications in detail, we can extend Table 3.1 and compare in Table 3.4 the most interesting features of the three camera interfaces.
Compression Techniques |
Introduction and Definitions
Image Acquisition
Image Distribution
Image Processing
Image Analysis
About the CD-ROM