OpenCV  5.0.0-pre
Open Source Computer Vision
Loading...
Searching...
No Matches
Interactive Visual Debugging of Computer Vision applications

What is the most common way to debug computer vision applications? Usually the answer is temporary, hacked together, custom code that must be removed from the code for release compilation.

In this tutorial we will show how to use the visual debugging features of the cvv module (opencv2/cvv.hpp) instead.

Goals

In this tutorial you will learn how to:

  • Add cvv debug calls to your application
  • Use the visual debug GUI
  • Enable and disable the visual debug features during compilation (with zero runtime overhead when disabled)

Code

The example code

  • captures images (videoio), e.g. from a webcam,
  • applies some filters to each image (imgproc),
  • detects image features and matches them to the previous image (features2d).

If the program is compiled without visual debugging (see CMakeLists.txt below) the only result is some information printed to the command line. We want to demonstrate how much debugging or development functionality is added by just a few lines of cvv commands.

1// system includes
2#include <iostream>
3
4// library includes
5#include <opencv2/imgproc.hpp>
7#include <opencv2/videoio.hpp>
8#include <opencv2/videoio/videoio_c.h>
9
10#define CVVISUAL_DEBUGMODE
16
17using namespace std;
18using namespace cv;
19
20template<class T> std::string toString(const T& p_arg)
21{
22 std::stringstream ss;
23
24 ss << p_arg;
25
26 return ss.str();
27}
28
29
30
31
32int
33main(int argc, char** argv)
34{
35 // parser keys
36 const char *keys =
37 "{ help h usage ? | | show this message }"
38 "{ width W | 0| camera resolution width. leave at 0 to use defaults }"
39 "{ height H | 0| camera resolution height. leave at 0 to use defaults }";
40
41 CommandLineParser parser(argc, argv, keys);
42 if (parser.has("help")) {
43 parser.printMessage();
44 return 0;
45 }
46 int res_w = parser.get<int>("width");
47 int res_h = parser.get<int>("height");
48
49 // setup video capture
50 cv::VideoCapture capture(0);
51 if (!capture.isOpened()) {
52 std::cout << "Could not open VideoCapture" << std::endl;
53 return 1;
54 }
55
56 if (res_w>0 && res_h>0) {
57 printf("Setting resolution to %dx%d\n", res_w, res_h);
58 capture.set(CV_CAP_PROP_FRAME_WIDTH, res_w);
59 capture.set(CV_CAP_PROP_FRAME_HEIGHT, res_h);
60 }
61
62
63 cv::Mat prevImgGray;
64 std::vector<cv::KeyPoint> prevKeypoints;
65 cv::Mat prevDescriptors;
66
67 int maxFeatureCount = 500;
68 Ptr<ORB> detector = ORB::create(maxFeatureCount);
69
71
72 for (int imgId = 0; imgId < 10; imgId++) {
73 // capture a frame
74 cv::Mat imgRead;
75 capture >> imgRead;
76 printf("%d: image captured\n", imgId);
77
78 std::string imgIdString{"imgRead"};
79 imgIdString += toString(imgId);
80 cvv::showImage(imgRead, CVVISUAL_LOCATION, imgIdString.c_str());
81
82 // convert to grayscale
83 cv::Mat imgGray;
84 cv::cvtColor(imgRead, imgGray, COLOR_BGR2GRAY);
85 cvv::debugFilter(imgRead, imgGray, CVVISUAL_LOCATION, "to gray");
86
87 // detect ORB features
88 std::vector<cv::KeyPoint> keypoints;
89 cv::Mat descriptors;
90 detector->detectAndCompute(imgGray, cv::noArray(), keypoints, descriptors);
91 printf("%d: detected %zd keypoints\n", imgId, keypoints.size());
92
93 // match them to previous image (if available)
94 if (!prevImgGray.empty()) {
95 std::vector<cv::DMatch> matches;
96 matcher.match(prevDescriptors, descriptors, matches);
97 printf("%d: all matches size=%zd\n", imgId, matches.size());
98 std::string allMatchIdString{"all matches "};
99 allMatchIdString += toString(imgId-1) + "<->" + toString(imgId);
100 cvv::debugDMatch(prevImgGray, prevKeypoints, imgGray, keypoints, matches, CVVISUAL_LOCATION, allMatchIdString.c_str());
101
102 // remove worst (as defined by match distance) bestRatio quantile
103 double bestRatio = 0.8;
104 std::sort(matches.begin(), matches.end());
105 matches.resize(int(bestRatio * matches.size()));
106 printf("%d: best matches size=%zd\n", imgId, matches.size());
107 std::string bestMatchIdString{"best " + toString(bestRatio) + " matches "};
108 bestMatchIdString += toString(imgId-1) + "<->" + toString(imgId);
109 cvv::debugDMatch(prevImgGray, prevKeypoints, imgGray, keypoints, matches, CVVISUAL_LOCATION, bestMatchIdString.c_str());
110 }
111
112 prevImgGray = imgGray;
113 prevKeypoints = keypoints;
114 prevDescriptors = descriptors;
115 }
116
118
119 return 0;
120}
#define CVVISUAL_LOCATION
Creates an instance of CallMetaData with the location of the macro as value.
Definition call_meta_data.hpp:65
Brute-force descriptor matcher.
Definition features2d.hpp:1230
Designed for command line parsing.
Definition utility.hpp:820
n-dimensional dense array class
Definition mat.hpp:816
bool empty() const
Returns true if the array has no elements.
Class for video capturing from video files, image sequences or cameras.
Definition videoio.hpp:725
@ NORM_HAMMING
Definition base.hpp:199
std::shared_ptr< _Tp > Ptr
Definition cvstd_wrapper.hpp:23
InputOutputArray noArray()
void finalShow()
Passes the control to the debug-window for a last time.
Definition final_show.hpp:23
static void debugDMatch(cv::InputArray img1, std::vector< cv::KeyPoint > keypoints1, cv::InputArray img2, std::vector< cv::KeyPoint > keypoints2, std::vector< cv::DMatch > matches, const impl::CallMetaData &data, const char *description=nullptr, const char *view=nullptr, bool useTrainDescriptor=true)
Add a filled in DMatch <dmatch> to debug GUI.
Definition dmatch.hpp:49
static void showImage(cv::InputArray img, impl::CallMetaData metaData=impl::CallMetaData(), const char *description=nullptr, const char *view=nullptr)
Add a single image to debug GUI (similar to imshow <>).
Definition show_image.hpp:38
static void debugFilter(cv::InputArray original, cv::InputArray result, impl::CallMetaData metaData=impl::CallMetaData(), const char *description=nullptr, const char *view=nullptr)
Use the debug-framework to compare two images (from which the second is intended to be the result of ...
Definition filter.hpp:36
void cvtColor(InputArray src, OutputArray dst, int code, int dstCn=0)
Converts an image from one color space to another.
int main(int argc, char *argv[])
Definition highgui_qt.cpp:3
"black box" representation of the file storage associated with a file on disk.
Definition core.hpp:102
STL namespace.
cmake_minimum_required(VERSION 2.8)
project(cvvisual_test)
SET(CMAKE_PREFIX_PATH ~/software/opencv/install)
SET(CMAKE_CXX_COMPILER "g++-4.8")
SET(CMAKE_CXX_FLAGS "-std=c++11 -O2 -pthread -Wall -Werror")
# (un)set: cmake -DCVV_DEBUG_MODE=OFF ..
OPTION(CVV_DEBUG_MODE "cvvisual-debug-mode" ON)
if(CVV_DEBUG_MODE MATCHES ON)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DCVVISUAL_DEBUGMODE")
endif()
FIND_PACKAGE(OpenCV REQUIRED)
include_directories(${OpenCV_INCLUDE_DIRS})
add_executable(cvvt main.cpp)
target_link_libraries(cvvt
opencv_core opencv_videoio opencv_imgproc opencv_features2d
opencv_cvv
)

Explanation

  1. We compile the program either using the above CmakeLists.txt with Option CVV_DEBUG_MODE=ON (cmake -DCVV_DEBUG_MODE=ON) or by adding the corresponding define CVVISUAL_DEBUGMODE to our compiler (e.g. g++ -DCVVISUAL_DEBUGMODE).
  2. The first cvv call simply shows the image (similar to imshow) with the imgIdString as comment.
    cvv::showImage(imgRead, CVVISUAL_LOCATION, imgIdString.c_str());
    The image is added to the overview tab in the visual debug GUI and the cvv call blocks.
image

The image can then be selected and viewed

image

Whenever you want to continue in the code, i.e. unblock the cvv call, you can either continue until the next cvv call (Step), continue until the last cvv call (*>>*) or run the application until it exists (Close).

We decide to press the green Step button.

  1. The next cvv calls are used to debug all kinds of filter operations, i.e. operations that take a picture as input and return a picture as output.
    cvv::debugFilter(imgRead, imgGray, CVVISUAL_LOCATION, "to gray");
    As with every cvv call, you first end up in the overview.
image

We decide not to care about the conversion to gray scale and press Step.

cvv::debugFilter(imgGray, imgGraySmooth, CVVISUAL_LOCATION, "smoothed");

If you open the filter call, you will end up in the so called "DefaultFilterView". Both images are shown next to each other and you can (synchronized) zoom into them.

image

When you go to very high zoom levels, each pixel is annotated with its numeric values.

image

We press Step twice and have a look at the dilated image.

cvv::debugFilter(imgEdges, imgEdgesDilated, CVVISUAL_LOCATION, "dilated edges");

The DefaultFilterView showing both images

image

Now we use the View selector in the top right and select the "DualFilterView". We select "Changed Pixels" as filter and apply it (middle image).

image

After we had a close look at these images, perhaps using different views, filters or other GUI features, we decide to let the program run through. Therefore we press the yellow *>>* button.

The program will block at

and display the overview with everything that was passed to cvv in the meantime.

image
  1. The cvv debugDMatch call is used in a situation where there are two images each with a set of descriptors that are matched to each other.

    We pass both images, both sets of keypoints and their matching to the visual debug module.

    cvv::debugDMatch(prevImgGray, prevKeypoints, imgGray, keypoints, matches, CVVISUAL_LOCATION, allMatchIdString.c_str());

    Since we want to have a look at matches, we use the filter capabilities (*#type match*) in the overview to only show match calls.

image

We want to have a closer look at one of them, e.g. to tune our parameters that use the matching. The view has various settings how to display keypoints and matches. Furthermore, there is a mouseover tooltip.

image

We see (visual debugging!) that there are many bad matches. We decide that only 70% of the matches should be shown - those 70% with the lowest match distance.

image

Having successfully reduced the visual distraction, we want to see more clearly what changed between the two images. We select the "TranslationMatchView" that shows to where the keypoint was matched in a different way.

image

It is easy to see that the cup was moved to the left during the two images.

Although, cvv is all about interactively seeing the computer vision bugs, this is complemented by a "RawView" that allows to have a look at the underlying numeric data.

image
  1. There are many more useful features contained in the cvv GUI. For instance, one can group the overview tab.
image

Result

  • By adding a view expressive lines to our computer vision program we can interactively debug it through different visualizations.
  • Once we are done developing/debugging we do not have to remove those lines. We simply disable cvv debugging (cmake -DCVV_DEBUG_MODE=OFF or g++ without -DCVVISUAL_DEBUGMODE) and our programs runs without any debug overhead.

Enjoy computer vision!