robotology / stereo-vision

Repository containing apps for stereo vision
https://robotology.github.io/stereo-vision/
GNU General Public License v2.0
19 stars 19 forks source link

Stereo Vision

A C++ YARP library that provides the iCub robot with stereo vision capabilities.

ZenHub

Installation

Dependencies

We also make use of LIBELAS for computing disparity maps, but there is no need to download it, since it is incorporated inside this code. For more information about how we incorporate the library, please see this README.

Documentation

Online documentation is available here: https://robotology.github.io/stereo-vision.

Implementation Details

The main classes introduced by this repository are the following ones:

Handling of the Stereo Parameters

The stereo parameters are saved within the configuration file SFM.ini, and are loaded and saved at runtime. In case the parameters are not available in the configuration file (as in the case you run this new module on a PC for the first time), the usual default values are loaded.

Use of the Module with 640x480 images

The module expects 320x240 images by default. It can be used with 640x480 images by invoking it with the --use640 flag.

GUI

This repository comes with a GUI which helps the user during the fine-tuning of the parameters of this module.

The components (and the code related to) the GUI can be disabled by means of a toggle in the CMake configuration, named USE_DISPARITYMODULE_GUI. Disabling it, takes away the single header file representing the GUI base code, together with all the other bits of source related to it. Thus, compiling the module without the GUI included actually removes everything about it from the final result.

The GUI makes it now easier to recalibrate the stereo system, to save the calibration, to load default stereo parameters and to save the current ones. Once it is not useful anymore, it can be quitted, closing it for the rest of the execution.

When compiled with GUI functionalities, the module can be launched with the graphical interface by invoking it with the flag --gui.

Inserting a novel stereo matching algorithm

It is possible to add a new stereo matching method by editing the content of just a few files. These are the steps to follow:

  1. file StereoMatcher.h:

    • add a new function definition to be associated with the new matching method, i.e.:
      
      void matchMethodX();
    
    - add a new item to the [enumeration](./modules/DisparityModule/StereoMatcher.h#L27) used to represent the different matching algorithms available:
    
    ```cpp
    enum SM_MATCHING_ALG {
       SGBM_OPENCV = 0,
       SGBM_CUDA,
       LIBELAS,
       METHODX
    };
  2. file StereoMatcher.cpp:

    • implement the corresponding matching method, which might also rely on external libraries, or have additional dependencies (which handling is not described here, since it's specific to the new algorithm included):
    void StereoMatcherNew::matchMethodX()
    {
     [...]
     // code executing the matching
     [...]
     this->disparity16 = resulting_disparity;
    }
    
  3. file DisparityModule.cpp:

    • enrich the content of line 246, with the new algorithm available, adding a new keyword to select it at configuration time:
    if (rf.check("sgbm"))
      this->stereo_matching = SM_MATCHING_ALG::SGBM_OPENCV;
    [...]
    else if(rf.check("methodX"))
      this->stereo_matching = SM_MATCHING_ALG::METHODX;
  4. file StereoMatcher.cpp:

    • add the handling of the new matching algorithm in the switch within the StereoMatcherNew::compute() function:
    case SM_MATCHING_ALG::METHODX:
      this->matchMethodX();
      break;

The following additional step is optional, and meant to be considered only if you plan to use this module with also the GUI functionalities:

  1. (optional) file cvgui.cpp:

    • add a new checkbox to the radioButtons call at line 114:
    this->updated |= cvuimine::radioButtons(frame, "Stereo Matching Alg.:", {"SGBM", "SGBM_CUDA", "LibElas", "MethodX"}, {20, 90, 190, 260}, 0);

    NOTE: you might want to enlarge the GUI window, since now there are more options in the radio buttons group associated with the choice of the stereo matching algorithm, this can be done by changing line 60 of the file:

    int gui_width = 450;   

    the value 450 is the one specified for the width, when initially designed. Increasing this value will make the window a little bigger, correctly fitting your needs.

    • adding the new algorithm to the switch construct in GUI::convertIDTOEnum():
    switch(this->stereo_matching_id)
    {
       [...]
       case 3:
           this->params.stereo_matching = SM_MATCHING_ALG::METHODX;
           break;
    }
    • adding the new algorithm to the switch construct in GUI::convertEnumToID():
    switch(this->params.stereo_matching)
    {
       [...]
       case SM_MATCHING_ALG::METHODX:
           this->stereo_matching_id = 3;
           break;
    }

Known (negligible) issues

A few things are not complete (however, they don't compromise the functionality of the module), and still require a quick correction each one:

  1. the implementation of the left-right consistency for the WLS filtering
  2. saving and loading the disparity map refinement threshold from the configuration file
  3. the original bilateral filtering is not working as supposed, since when the code has been moved on the iCub PC, the filtering is run but it looks like that the sigmaColor and sigmaSpace parameters are ignored. This is not critical at all, since that filtering process is very slow, and it can be substituted with the CUDA implementation of the bilateral filtering, which is now available. however this issue should be fixed at some point

License

The files contained in this repository are licensed under the GNU General Public License v2.0 later (see the file LICENSE for details), except the following files: