Cam-net-stream: Difference between revisions
From University of Washington - Ubicomp Research Page
Jump to navigationJump to search
Karl Koscher (talk | contribs) No edit summary |
Karl Koscher (talk | contribs) |
||
Line 16: | Line 16: | ||
<ul> | <ul> | ||
=== Command line format === | === Command line format === | ||
<ul><pre>cam-server</pre> | <ul><pre>cam-server <port></pre></ul> | ||
</ul> | </ul> |
Revision as of 00:37, 17 August 2007
cam-net-stream
- msp/src/cam-net-stream/cam-net-stream.c
- linux download (xscale)
cam-net-stream is a program that sends a stream of JPEG images captured by cam-server over a TCP/IP connection. cam-net-stream listens for an incoming connection on a port you specify, and begins sending JPEG images once connected. Only one connection may exist at a time.
Before each JPEG image, the image length is sent as a four-byte, little-endian integer. Thus, the data stream looks like:
Byte 0 | Byte 1 | Byte 2 | Byte 3 | Byte 4 -- Length + 3 | Byte n | Byte n + 1 | Byte n + 2 | Byte n + 3 | Byte n + 4 -- Byte n + 3 + Length |
---|---|---|---|---|---|---|---|---|---|
Length | JPEG Data | Length | JPEG DATA |
usage
Command line format
cam-server <port>