README.cpia2 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. $Id: README,v 1.7 2005/08/29 23:39:57 sbertin Exp $
  2. 1. Introduction
  3. This is a driver for STMicroelectronics's CPiA2 (second generation
  4. Colour Processor Interface ASIC) based cameras. This camera outputs an MJPEG
  5. stream at up to vga size. It implements the Video4Linux interface as much as
  6. possible. Since the V4L interface does not support compressed formats, only
  7. an mjpeg enabled application can be used with the camera. We have modified the
  8. gqcam application to view this stream.
  9. The driver is implemented as two kernel modules. The cpia2 module
  10. contains the camera functions and the V4L interface. The cpia2_usb module
  11. contains usb specific functions. The main reason for this was the size of the
  12. module was getting out of hand, so I separated them. It is not likely that
  13. there will be a parallel port version.
  14. FEATURES:
  15. - Supports cameras with the Vision stv6410 (CIF) and stv6500 (VGA) cmos
  16. sensors. I only have the vga sensor, so can't test the other.
  17. - Image formats: VGA, QVGA, CIF, QCIF, and a number of sizes in between.
  18. VGA and QVGA are the native image sizes for the VGA camera. CIF is done
  19. in the coprocessor by scaling QVGA. All other sizes are done by clipping.
  20. - Palette: YCrCb, compressed with MJPEG.
  21. - Some compression parameters are settable.
  22. - Sensor framerate is adjustable (up to 30 fps CIF, 15 fps VGA).
  23. - Adjust brightness, color, contrast while streaming.
  24. - Flicker control settable for 50 or 60 Hz mains frequency.
  25. 2. Making and installing the stv672 driver modules:
  26. Requirements:
  27. -------------
  28. This should work with 2.4 (2.4.23 and later) and 2.6 kernels, but has
  29. only been tested on 2.6. Video4Linux must be either compiled into the kernel or
  30. available as a module. Video4Linux2 is automatically detected and made
  31. available at compile time.
  32. Compiling:
  33. ----------
  34. As root, do a make install. This will compile and install the modules
  35. into the media/video directory in the module tree. For 2.4 kernels, use
  36. Makefile_2.4 (aka do make -f Makefile_2.4 install).
  37. Setup:
  38. ------
  39. Use 'modprobe cpia2' to load and 'modprobe -r cpia2' to unload. This
  40. may be done automatically by your distribution.
  41. 3. Driver options
  42. Option Description
  43. ------ -----------
  44. video_nr video device to register (0=/dev/video0, etc)
  45. range -1 to 64. default is -1 (first available)
  46. If you have more than 1 camera, this MUST be -1.
  47. buffer_size Size for each frame buffer in bytes (default 68k)
  48. num_buffers Number of frame buffers (1-32, default 3)
  49. alternate USB Alternate (2-7, default 7)
  50. flicker_freq Frequency for flicker reduction(50 or 60, default 60)
  51. flicker_mode 0 to disable, or 1 to enable flicker reduction.
  52. (default 0). This is only effective if the camera
  53. uses a stv0672 coprocessor.
  54. Setting the options:
  55. --------------------
  56. If you are using modules, edit /etc/modules.conf and add an options
  57. line like this:
  58. options cpia2 num_buffers=3 buffer_size=65535
  59. If the driver is compiled into the kernel, at boot time specify them
  60. like this:
  61. cpia2.num_buffers=3 cpia2.buffer_size=65535
  62. What buffer size should I use?
  63. ------------------------------
  64. The maximum image size depends on the alternate you choose, and the
  65. frame rate achieved by the camera. If the compression engine is able to
  66. keep up with the frame rate, the maximum image size is given by the table
  67. below.
  68. The compression engine starts out at maximum compression, and will
  69. increase image quality until it is close to the size in the table. As long
  70. as the compression engine can keep up with the frame rate, after a short time
  71. the images will all be about the size in the table, regardless of resolution.
  72. At low alternate settings, the compression engine may not be able to
  73. compress the image enough and will reduce the frame rate by producing larger
  74. images.
  75. The default of 68k should be good for most users. This will handle
  76. any alternate at frame rates down to 15fps. For lower frame rates, it may
  77. be necessary to increase the buffer size to avoid having frames dropped due
  78. to insufficient space.
  79. Image size(bytes)
  80. Alternate bytes/ms 15fps 30fps
  81. 2 128 8533 4267
  82. 3 384 25600 12800
  83. 4 640 42667 21333
  84. 5 768 51200 25600
  85. 6 896 59733 29867
  86. 7 1023 68200 34100
  87. How many buffers should I use?
  88. ------------------------------
  89. For normal streaming, 3 should give the best results. With only 2,
  90. it is possible for the camera to finish sending one image just after a
  91. program has started reading the other. If this happens, the driver must drop
  92. a frame. The exception to this is if you have a heavily loaded machine. In
  93. this case use 2 buffers. You are probably not reading at the full frame rate.
  94. If the camera can send multiple images before a read finishes, it could
  95. overwrite the third buffer before the read finishes, leading to a corrupt
  96. image. Single and double buffering have extra checks to avoid overwriting.
  97. 4. Using the camera
  98. We are providing a modified gqcam application to view the output. In
  99. order to avoid confusion, here it is called mview. There is also the qx5view
  100. program which can also control the lights on the qx5 microscope. MJPEG Tools
  101. (http://mjpeg.sourceforge.net) can also be used to record from the camera.
  102. 5. Notes to developers:
  103. - This is a driver version stripped of the 2.4 back compatibility
  104. and old MJPEG ioctl API. See cpia2.sf.net for 2.4 support.
  105. 6. Thanks:
  106. - Peter Pregler <Peter_Pregler@email.com>,
  107. Scott J. Bertin <scottbertin@yahoo.com>, and
  108. Jarl Totland <Jarl.Totland@bdc.no> for the original cpia driver, which
  109. this one was modelled from.