QX5 USB microscope: Difference between revisions

From LinuxTVWiki
Jump to navigation Jump to search
 
No edit summary
(6 intermediate revisions by 4 users not shown)
Line 1: Line 1:
The '''QX5 USB microscope''' is a computer only microscope with magnification power of 10x, 60x and 200x. The QX5 is sold by Intel Play. Intel Play claims that the QX5 is not supported under GNU/Linux but the cpia2 kernel module supports it well. In order to use the QX5 with a 2.6.x Linux kernel, it is required to get the latest version of cpia2 and qx5view from the cpia2 CVS.
The '''QX5 USB microscope''' is a computer-only microscope with magnification power of 10x, 60x and 200x. The QX5 is sold by Intel Play. Intel Play claims that the QX5 is not supported under GNU/Linux, but in fact the cpia2 kernel module supports it well.

The [[Cpia2]] driver was recently ported to v4l2 and version 2.0 of the driver was released in September 2005; in February 2006 it was accepted into Andrew Morton's 2.6.16-rc4-mm2 experimental kernel branch; cf. [http://kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.16-rc4/2.6.16-rc4-mm2/broken-out/add-cpia2-camera-support.patch submission patch]. It will likely make it into the 2.6.16 kernel.

This driver comes with two small applications: mview, a modified version of gqcam to view the output, and qx5view, a viewer that also controls the lights on the qx5 microscope. MJPEG Tools
[http://mjpeg.sourceforge.net MJPEG Tools] can be used to record.

Until the driver reaches mainline, you will need to get the latest version of cpia2 and qx5view from the [http://cpia2.sourceforge.net/download.php cpia2 CVS] in order to use the QX5 with a 2.6.x Linux kernel.


To build and load cpia2, you only have to do
To build and load cpia2, you only have to do
Line 6: Line 13:


You will then be able to start qx5view which should detect your microscope.
You will then be able to start qx5view which should detect your microscope.

Oops! qx5view doesn't compile since kernel 2.6.38 or so, but the QX5 does work as a capture device in vlc as /dev/video0. The lights can be controlled from the command line while vlc is running using:

lights off: $ v4l2-ctl --set-ctrl=lights=0

top light only $ v4l2-ctl --set-ctrl=lights=1
bottom light only $ v4l2-ctl --set-ctrl=lights=2
both lights $ v4l2-ctl --set-ctrl=lights=3

If you'd like a gui to control lights and other QX5 features try qv4l2 while vlc is running. v4l2-ctl and qv4l2 are parts of the v4l-utils package in Debian Wheezy. This all worked with kernel version 3.1.0-1-686-pae.








== External Links ==
== External Links ==
* [http://ygingras.net/images/wasp-eye2-60x.jpg image taken under GNU/Linux]
* [http://ygingras.net/images/wasp-eye2-60x.jpg image taken under GNU/Linux]
* [http://cpia2.sourceforge.net/ cpia2 driver on sourceforge]
* [http://cpia2.sourceforge.net/ cpia2 driver on sourceforge]
* [http://www.playdigitalblue.com/products/qx5/info/ company website]
* [http://www.playdigitalblue.com/products/qx5/info/ product website]
[[Category:Hardware]]

Revision as of 19:14, 10 December 2011

The QX5 USB microscope is a computer-only microscope with magnification power of 10x, 60x and 200x. The QX5 is sold by Intel Play. Intel Play claims that the QX5 is not supported under GNU/Linux, but in fact the cpia2 kernel module supports it well.

The Cpia2 driver was recently ported to v4l2 and version 2.0 of the driver was released in September 2005; in February 2006 it was accepted into Andrew Morton's 2.6.16-rc4-mm2 experimental kernel branch; cf. submission patch. It will likely make it into the 2.6.16 kernel.

This driver comes with two small applications: mview, a modified version of gqcam to view the output, and qx5view, a viewer that also controls the lights on the qx5 microscope. MJPEG Tools MJPEG Tools can be used to record.

Until the driver reaches mainline, you will need to get the latest version of cpia2 and qx5view from the cpia2 CVS in order to use the QX5 with a 2.6.x Linux kernel.

To build and load cpia2, you only have to do

make install
modprobe cpia2

You will then be able to start qx5view which should detect your microscope.

Oops! qx5view doesn't compile since kernel 2.6.38 or so, but the QX5 does work as a capture device in vlc as /dev/video0. The lights can be controlled from the command line while vlc is running using:

lights off: $ v4l2-ctl --set-ctrl=lights=0

top light only $ v4l2-ctl --set-ctrl=lights=1

bottom light only $ v4l2-ctl --set-ctrl=lights=2

both lights $ v4l2-ctl --set-ctrl=lights=3

If you'd like a gui to control lights and other QX5 features try qv4l2 while vlc is running. v4l2-ctl and qv4l2 are parts of the v4l-utils package in Debian Wheezy. This all worked with kernel version 3.1.0-1-686-pae.




External Links