Visual Servoing Platform
version 3.0.1
|
In this tutorial you will learn how to grab images with ViSP, either from cameras or from a video stream.
All the material (source code and videos) described in this tutorial is part of ViSP source code and could be downloaded using the following command:
After ViSP 3.0.0, we introduce vpFlyCaptureGrabber class, a wrapper over PointGrey FlyCapture SDK that allows to grab images from any PointGrey camera. This grabber was tested under Ubuntu and Windows with the following cameras:
It should also work with GigE PGR cameras.
The following example also available in tutorial-grabber-flycapture.cpp shows how to use vpFlyCaptureGrabber to capture grey level images from a PointGrey camera under Ubuntu or Windows. The following example suppose that a window renderer (libX11 on Ubuntu or GDI on Windows) and FlyCapture SDK 3rd party are available throw VISP.
Here after we explain the source code.
First an instance of the frame grabber is created.
Once the grabber is created, we turn auto shutter and auto gain on and set the camera image size, color coding, and framerate. These settings are enclosed in a try/catch to be able to continue if one of these settings are not supported by the camera.
Then the grabber is initialized using:
From now the grey level image I
is also initialized with the size corresponding to the grabber settings.
Then we enter in a while loop where image acquisition is simply done by:
This image is then displayed using libX11 or GDI renderer:
We are waiting for a non blocking mouse event to break the while loop before ending the program.
The next example also available in tutorial-grabber-1394.cpp shows how to use a framegrabber to acquire color images from a firewire camera under Unix. The following example suppose that libX11 and libdc1394-2 3rd party are available.
Here after we explain the new lines that are introduced.
First an instance of the frame grabber is created. During the creating a bus reset is send. If you don't want to reset the firewire bus, just turn reset to false.
Once the grabber is created, we set the camera image size, color coding, and framerate.
Note that here you can specify some other settings such as the firewire transmission speed. For a more complete list of settings see vp1394TwoGrabber class.
Then the grabber is initialized using:
From now the color image I
is also initialized with the size corresponding to the grabber settings.
Then we enter in a while loop where image acquisition is simply done by:
We are waiting for a non blocking mouse event to break the while loop before ending the program.
In the previous example we use vp1394TwoGrabber class that works for firewire cameras under Unix. If you are under Windows, you may use vp1394CMUGrabber class. A similar example is provided in tutorial-grabber-CMU1394.cpp.
If you want to grab images from an usb camera under Unix, you may use vpV4l2Grabber class. To this end libv4l should be installed. An example is provided in tutorial-grabber-v4l2.cpp.
It is also possible to grab images using OpenCV. You may find an example in tutorial-grabber-opencv.cpp.
With ViSP it also possible to get images from an input video stream. Supported formats are *.avi, *.mp4, *.mov, *.ogv, *.flv and many others... To this end we exploit ffmpeg or OpenCV 3rd parties.
If ViSP was build with ffmpeg 3rd party support (cmake -DUSE_FFMPEG=ON ...), we use ffmpeg capabilities to decode the video stream. If ffmpeg is not found or used (cmake -DUSE_FFMPEG=OFF ...) and if OpenCV is available (cmake -DUSE_OPENCV=ON ...) we use rather OpenCV capabilities. This new feature was introduced in ViSP 2.10.0 and is especially useful under Windows where installing ffmpeg is quite complex.
The example below available in tutorial-video-reader.cpp shows how o consider an mpeg video stream.
We explain now the new lines that were introduced.
Include the header of the vpTime class that allows to measure time, and of the vpVideoReader class that allows to read a video stream.
Create an instance of a video reader.
Set the name of the video stream. Here videoname
corresponds to a video file name location. For example we provide the file video.mpg
located in the same folder than the executable.
The vpVideoReader class can also handle a sequence of images. For example, to read the following images:
you may use the following:
where you specify that each image number is coded with 4 digits. Here, ffmpeg is no yet mandatory, but rather libpng
or OpenCV that should be available to read PNG images. Supported image formats are PPM, PGM, PNG and JPEG.
Then as for any other grabber, you have to initialize the frame grabber using:
Then we enter in the while loop until the last image was not reached:
To get the next image in the stream, we just use:
To synchronize the video decoding with the video framerate, we measure the beginning time of each loop iteration:
The synchronization is done by waiting from the beginning of the iteration the corresponding time expressed in milliseconds by using:
You are now ready to see how to continue with: