MRPT  2.0.1
test.cpp
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | https://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2020, Individual contributors, see AUTHORS file |
6  | See: https://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See: https://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 
10 #include <mrpt/gui.h>
12 #include <mrpt/vision/tracking.h>
13 #include <iostream>
14 
15 using namespace mrpt::gui;
16 using namespace mrpt::vision;
17 using namespace mrpt::img;
18 using namespace mrpt::system;
19 using namespace std;
20 using mrpt::format;
21 
22 #include <mrpt/examples_config.h>
23 string myDataDir(MRPT_EXAMPLES_BASE_DIRECTORY + string("img_convolution_fft/"));
24 const string the_img_for_extract_feats = myDataDir + string("test_image.jpg");
25 
26 // ------------------------------------------------------
27 // TestCapture
28 // ------------------------------------------------------
30 {
31  CDisplayWindow3D wind;
32  CFeatureExtraction fExt;
33  CFeatureList featsHarris_L, featsHarris_R;
34  CMatchedFeatureList mHarris, mSIFT, mSURF;
35  CImage imL, imR;
36 
37  string imgL = MRPT_EXAMPLES_BASE_DIRECTORY +
38  string("vision_feature_extraction/") +
39  string("imgs/imL_p01.jpg"); // Left image
40  string imgR = MRPT_EXAMPLES_BASE_DIRECTORY +
41  string("vision_feature_extraction/") +
42  string("imgs/imR_p01.jpg"); // Right image
43 
44  // Load and check images
45  if (!imL.loadFromFile(imgL))
46  {
47  cerr << "Cannot load " << imgL << endl;
48  return;
49  }
50  cout << "Loaded test image: " << imgL << endl;
51 
52  if (!imR.loadFromFile(imgR))
53  {
54  cerr << "Cannot load " << imgR << endl;
55  return;
56  }
57  cout << "Loaded test image: " << imgR << endl;
58 
59  cout << "***************************************************" << endl;
60  cout << "***************************************************" << endl;
61 
62  // Extract features:
63  // HARRIS
64  cout << "Detecting HARRIS features in LEFT image" << endl;
65  fExt.options.featsType = featKLT;
66  fExt.detectFeatures(imL, featsHarris_L);
67  cout << "Detected " << featsHarris_L.size() << endl;
68 
69  cout << "Detecting HARRIS features in RIGHT image" << endl;
70  fExt.detectFeatures(imR, featsHarris_R);
71  cout << "Detected " << featsHarris_R.size() << endl;
72 
73  cout << "***************************************************" << endl;
74  cout << "***************************************************" << endl;
75 
76  // Match features:
77  // size_t nMatches;
78  TMatchingOptions opt;
79 
80  // HARRIS
81  cout << "Matching HARRIS features by CORRELATION" << endl;
82  // nMatches =
83  matchFeatures(featsHarris_L, featsHarris_R, mHarris);
84  cout << "Matches found: " << mHarris.size() << endl;
85 
86  cout << "***************************************************" << endl;
87 
88 } // end TestExtractMatchProjectAndPaint
89 
90 // ------------------------------------------------------
91 // TestCapture
92 // ------------------------------------------------------
93 void TestMatchFeatures()
94 {
95  CDisplayWindow wind, wind2;
96  CFeatureExtraction fExt;
97  CFeatureList featsHarris_L, featsHarris_R, featsSIFT_L, featsSIFT_R,
98  featsSURF_L, featsSURF_R, featsFAST_L, featsFAST_R;
99  CMatchedFeatureList mHarris, mSIFT, mSURF, mHarris_SAD, mFAST_CC, mFAST_SAD;
100  CImage imL, imR;
101 
102  string imgL = MRPT_EXAMPLES_BASE_DIRECTORY +
103  string("vision_feature_extraction/") +
104  string("imgs/imL_p01.jpg"); // Left image
105  string imgR = MRPT_EXAMPLES_BASE_DIRECTORY +
106  string("vision_feature_extraction/") +
107  string("imgs/imR_p01.jpg"); // Right image
108 
109  // string imgL = "../../bin/imgs/640x480_left_rect.jpg"; // Left
110  // image
111  // string imgR = "../../bin/imgs/640x480_right_rect.jpg"; // Right
112  // image
113 
114  // Load and check images
115  if (!imL.loadFromFile(imgL))
116  {
117  cerr << "Cannot load " << imgL << endl;
118  return;
119  }
120  cout << "Loaded test image: " << imgL << endl;
121 
122  if (!imR.loadFromFile(imgR))
123  {
124  cerr << "Cannot load " << imgR << endl;
125  return;
126  }
127  cout << "Loaded test image: " << imgR << endl;
128 
129  cout << "***************************************************" << endl;
130  cout << "***************************************************" << endl;
131 
132  // Extract features:
133  // HARRIS
134  cout << "Detecting HARRIS features in LEFT image" << endl;
136  fExt.detectFeatures(imL, featsHarris_L);
137  cout << "Detected " << featsHarris_L.size() << endl;
138 
139  cout << "Detecting HARRIS features in RIGHT image" << endl;
140  fExt.detectFeatures(imR, featsHarris_R);
141  cout << "Detected " << featsHarris_R.size() << endl;
142  cout << "***************************************************" << endl;
143 
144  // SIFT
145  cout << "Detecting SIFT features in LEFT image" << endl;
146  fExt.options.featsType = featSIFT;
147  // fExt.options.SIFTOptions.implementation = CFeatureExtraction::Hess;
148  fExt.options.SIFTOptions.implementation = CFeatureExtraction::OpenCV;
149  fExt.detectFeatures(imL, featsSIFT_L);
150  cout << "Detected " << featsSIFT_L.size() << endl;
151 
152  cout << "Detecting SIFT features in RIGHT image" << endl;
153  fExt.options.featsType = featSIFT;
154  // fExt.options.SIFTOptions.implementation = CFeatureExtraction::Hess;
155  fExt.options.SIFTOptions.implementation = CFeatureExtraction::OpenCV;
156  fExt.detectFeatures(imR, featsSIFT_R);
157  cout << "Detected " << featsSIFT_R.size() << endl;
158  cout << "***************************************************" << endl;
159 
160  // SURF
161  cout << "Detecting SURF features in LEFT image" << endl;
162  fExt.options.featsType = featSURF;
163  fExt.detectFeatures(imL, featsSURF_L);
164  cout << "Detected " << featsSURF_L.size() << endl;
165 
166  cout << "Detecting SURF features in RIGHT image" << endl;
167  fExt.detectFeatures(imR, featsSURF_R);
168  cout << "Detected " << featsSURF_R.size() << endl;
169  cout << "***************************************************" << endl;
170 
171  // FAST
172  cout << "Detecting FAST features in LEFT image" << endl;
173  fExt.options.featsType = featFAST;
174  fExt.detectFeatures(imL, featsFAST_L, 0, 400);
175  cout << "Detected " << featsFAST_L.size() << endl;
176  CDisplayWindow fast1("LEFT");
177  fast1.showImageAndPoints(imL, featsFAST_L);
178 
179  cout << "Detecting FAST features in RIGHT image" << endl;
180  fExt.detectFeatures(imR, featsFAST_R, 0, 400);
181  cout << "Detected " << featsFAST_R.size() << endl;
182  cout << "***************************************************" << endl;
183  cout << "***************************************************" << endl;
184  CDisplayWindow fast2("RIGHT");
185  fast2.showImageAndPoints(imR, featsFAST_R);
186 
187  // Match features:
188  // size_t nMatches;
189  TMatchingOptions opt;
190 
191  // HARRIS
192  CTicTac tictac;
193  cout << "Matching HARRIS features by CORRELATION" << endl;
194  tictac.Tic();
195  // nMatches =
196  matchFeatures(featsHarris_L, featsHarris_R, mHarris);
197  double T = tictac.Tac();
198  cout << "[CC] Matches found: " << mHarris.size() << " in " << T * 1000.0f
199  << " ms " << endl;
200 
201  opt.matching_method = TMatchingOptions::mmSAD;
202  tictac.Tic();
203  // nMatches =
204  matchFeatures(featsHarris_L, featsHarris_R, mHarris_SAD, opt);
205  T = tictac.Tac();
206  cout << "[SAD] Matches found: " << mHarris_SAD.size() << " in "
207  << T * 1000.0f << " ms " << endl;
208  cout << "***************************************************" << endl;
209  wind.showImagesAndMatchedPoints(imL, imR, mHarris_SAD, TColor(0, 0, 255));
210 
211  // SIFT
212  cout << "Matching SIFT features by DESCRIPTOR" << endl;
213  opt.matching_method = TMatchingOptions::mmDescriptorSIFT;
214  // nMatches =
215  matchFeatures(featsSIFT_L, featsSIFT_R, mSIFT, opt);
216  cout << "Matches found: " << mSIFT.size() << endl;
217  cout << "***************************************************" << endl;
218 
219  // SURF
220  cout << "Matching SURF features by DESCRIPTOR" << endl;
221  opt.matching_method = TMatchingOptions::mmDescriptorSURF;
222  // nMatches =
223  matchFeatures(featsSURF_L, featsSURF_R, mSURF, opt);
224  cout << "Matches found: " << mSURF.size() << endl;
225  cout << "***************************************************" << endl;
226 
227  // FAST
228  cout << "Matching FAST features by CC" << endl;
229  tictac.Tic();
230  // nMatches =
231  matchFeatures(featsFAST_L, featsFAST_R, mFAST_CC);
232  T = tictac.Tac();
233  cout << "[CC] Matches found: " << mFAST_CC.size() << " in " << T * 1000.0f
234  << " ms " << endl;
235 
236  opt.matching_method = TMatchingOptions::mmSAD;
237  tictac.Tic();
238  // nMatches =
239  matchFeatures(featsFAST_L, featsFAST_R, mFAST_SAD, opt);
240  T = tictac.Tac();
241  cout << "[SAD] Matches found: " << mFAST_SAD.size() << " in " << T * 1000.0f
242  << " ms " << endl;
243  cout << "***************************************************" << endl;
244 
245  wind2.showImagesAndMatchedPoints(imL, imR, mFAST_SAD, TColor(0, 255, 0));
246 
248 
249 } // end TestMatchFeatures
250 
252 {
253  // Take two images
254  string imgL = MRPT_EXAMPLES_BASE_DIRECTORY +
255  string("vision_feature_extraction/") +
256  string("imgs/imL_p01.jpg"); // Left image
257  string imgR = MRPT_EXAMPLES_BASE_DIRECTORY +
258  string("vision_feature_extraction/") +
259  string("imgs/imR_p01.jpg"); // Right image
260 
261  CImage im1, im2;
262  im1.loadFromFile(imgL);
263  im2.loadFromFile(imgR);
264 
265  size_t imW = im1.getWidth();
266  size_t imH = im1.getHeight();
267 
268  CFeatureExtraction fExt;
269  fExt.options.featsType = featFAST;
270  fExt.options.patchSize = 21;
271  fExt.options.SIFTOptions.implementation = CFeatureExtraction::Hess;
272 
273  // Find FAST features
274  CFeatureList list1, list2;
275  fExt.detectFeatures(im1, list1, 150);
276  // Compute SIFT & SURF descriptors
277  fExt.computeDescriptors(im1, list1, descSIFT);
278  fExt.computeDescriptors(im1, list1, descSURF);
279 
280  fExt.detectFeatures(im2, list2, 150);
281  // Compute SIFT & SURF descriptors
282  fExt.computeDescriptors(im2, list2, descSIFT);
283  fExt.computeDescriptors(im2, list2, descSURF);
284 
285  im1.drawFeatures(list1);
286  im2.drawFeatures(list2);
287 
288  CDisplayWindow win, win2;
289  win.setPos(0, 0);
290  win2.setPos(0, imH * 1.5);
291  CImage joinimage, copyjoinimage, copyInfoImage;
292  size_t imW2 = 1280;
293  size_t imH2 = 150;
294 
295  CImage infoimage(imW2, imH2, CH_RGB);
296 
297  joinimage.joinImagesHorz(im1, im2);
298  infoimage.filledRectangle(0, 0, imW2, imH2, TColor(150, 150, 150));
299  infoimage.textOut(20, imH2 - 53, "SAD", TColor::blue());
300  infoimage.textOut(20, imH2 - 41, "NCC", TColor::blue());
301  infoimage.textOut(20, imH2 - 29, "SIFT", TColor::blue());
302  infoimage.textOut(20, imH2 - 17, "SURF", TColor::blue());
303  for (auto it1 = list1.begin(); it1 != list1.end(); ++it1)
304  {
305  const auto& pt1 = it1->keypoint.pt;
306 
307  copyInfoImage = infoimage;
308  copyjoinimage = joinimage;
309  copyjoinimage.line(pt1.x, 0, pt1.x, imH,
310  TColor::green()); // Horiz
311  copyjoinimage.line(
312  pt1.x + imW, 0, pt1.x + imW, imH,
313  TColor::green()); // Horiz
314  copyjoinimage.line(
315  0, pt1.y, imW + imW, pt1.y,
316  TColor::green()); // Epipolar
317  copyjoinimage.drawCircle(
318  pt1.x, pt1.y, 4, TColor::green(),
319  2); // Keypoint
320 
321  copyInfoImage.update_patch(*it1->patch, 0, 0);
322  bool firstMatch = true;
323  int cnt = 0;
324  int px = 80;
325  double minsad = 1.0, maxncc = 0.0;
326  float minsiftd = 1.0f, minsurfd = 1.0f;
327  int idxsad = 0, idxncc = 0, idxsiftd = 0, idxsurfd = 0;
328 
329  for (auto it2 = list2.begin(); it2 != list2.end(); ++it2)
330  {
331  const auto& pt2 = it2->keypoint.pt;
332 
333  if (fabs(pt1.y - pt2.y) <= 1.0 && pt1.x > pt2.x)
334  {
335  // Compute matching with SAD and Correlation and SIFT/SURF?
336  // Use epipolar constraints
337  // Compute SAD
338  double sad = mrpt::vision::computeSAD(*it1->patch, *it2->patch);
339  if (sad < minsad)
340  {
341  minsad = sad;
342  idxsad = cnt;
343  }
344  // Compute Correlation
345  double ncc;
346  size_t u, v;
348  *it1->patch, *it2->patch, u, v, ncc);
349  if (ncc > maxncc)
350  {
351  maxncc = ncc;
352  idxncc = cnt;
353  }
354 
355  // Compute distance between descriptors SIFT
356  float siftd = it1->descriptorSIFTDistanceTo(*it2);
357  if (siftd < minsiftd)
358  {
359  minsiftd = siftd;
360  idxsiftd = cnt;
361  }
362 
363  // Compute distance between descriptors SIFT
364  float surfd = it1->descriptorSURFDistanceTo(*it2);
365  if (surfd < minsurfd)
366  {
367  minsurfd = surfd;
368  idxsurfd = cnt;
369  }
370 
371  // Plot images + features + each candidate + difference score
372  if (firstMatch)
373  {
374  copyjoinimage.line(
375  pt1.x + imW, 0, pt1.x + imW, imH,
376  TColor::green()); // Limit line (only the first time)
377  firstMatch = false;
378  } // end-if
379 
380  copyjoinimage.drawCircle(
381  pt2.x + imW, pt2.y, 4, TColor::blue(),
382  2); // Keypoint
383  double rx0, rx1, ry0, ry1, tx, ty;
384  rx0 = pt2.x + imW - 15;
385  rx1 = pt2.x + imW;
386  tx = pt2.x + imW - 13;
387  if (cnt % 2)
388  {
389  ry0 = pt2.y - 20;
390  ry1 = pt2.y - 10;
391  ty = pt2.y - 22;
392  }
393  else
394  {
395  ry0 = pt2.y + 10;
396  ry1 = pt2.y + 20;
397  ty = pt2.y + 8;
398  }
399  copyjoinimage.filledRectangle(
400  rx0, ry0, rx1, ry1, TColor(150, 150, 150));
401  copyjoinimage.textOut(
402  tx, ty, format("%d", cnt), TColor::blue());
403 
404  px = 80 + cnt * 50;
405  if (px + fExt.options.patchSize > imW2) continue;
406 
407  copyInfoImage.update_patch(*it2->patch, px, 30);
408 
409  copyInfoImage.textOut(
410  px, imH2 - 70, format("%d", cnt), TColor::blue());
411  copyInfoImage.textOut(
412  px, imH2 - 53, format("%.2f", sad), TColor::blue());
413  copyInfoImage.textOut(
414  px, imH2 - 41, format("%.2f", ncc), TColor::blue());
415  copyInfoImage.textOut(
416  px, imH2 - 29, format("%.2f", siftd), TColor::blue());
417  copyInfoImage.textOut(
418  px, imH2 - 17, format("%.2f", surfd), TColor::blue());
419 
420  cnt++;
421  } // end if
422  } // end for it2
423  copyInfoImage.textOut(
424  80 + idxsad * 50, imH2 - 53, format("%.2f", minsad),
425  TColor::green());
426  copyInfoImage.textOut(
427  80 + idxncc * 50, imH2 - 41, format("%.2f", maxncc),
428  TColor::green());
429  copyInfoImage.textOut(
430  80 + idxsiftd * 50, imH2 - 29, format("%.2f", minsiftd),
431  TColor::green());
432  copyInfoImage.textOut(
433  80 + idxsurfd * 50, imH2 - 17, format("%.2f", minsurfd),
434  TColor::green());
435 
436  win.showImage(copyjoinimage);
437  win2.showImage(copyInfoImage);
439  } // end for it1
440 
441  // Save to file
442  // Check number of good features
443 
444 } // end TestMatchingComparative
445 
446 // ------------------------------------------------------
447 // TestExtractFeatures
448 // ------------------------------------------------------
449 void TestExtractFeatures()
450 {
451  CDisplayWindow wind1, wind2, wind3, wind4, wind5;
452  CFeatureExtraction fExt;
453  CFeatureList featsHarris, featsKLT, featsSIFT_Hess, featsSIFT_Lowe,
454  featsSIFT_Vedaldi, featsSURF, featsFAST;
455  CImage img;
456 
458  {
459  cerr << "Cannot load " << the_img_for_extract_feats << endl;
460  return;
461  }
462  cout << "Loaded test image: " << endl << the_img_for_extract_feats << endl;
463  cout << "------------------------------------------------------------------"
464  "--------"
465  << endl
466  << endl;
467 
468  CTicTac tictac;
469 
470  fExt.options.patchSize = 0;
471 
472  cout << "Detect Harris features... [f_harris.txt]" << endl;
473  tictac.Tic();
475  fExt.detectFeatures(img, featsHarris);
476  cout << "Detected " << featsHarris.size() << " features in ";
477  cout << format(" %.03fms", tictac.Tac() * 1000) << endl << endl;
478  featsHarris.saveToTextFile("f_harris.txt");
479  wind1.setWindowTitle("Harris detected features");
480  wind1.showImageAndPoints(img, featsHarris);
481 
482  cout << "Detect FAST features... [f_fast.txt]" << endl;
483  tictac.Tic();
484  fExt.options.featsType = featFAST;
485  fExt.options.FASTOptions.threshold = 15; // 150;
488  fExt.detectFeatures(img, featsFAST, 0, 500 /* max num feats */);
489  cout << "Detected " << featsFAST.size() << " features in ";
490  cout << format(" %.03fms", tictac.Tac() * 1000) << endl << endl;
491  featsFAST.saveToTextFile("f_fast.txt");
492  wind5.setWindowTitle("FAST detected features");
493  wind5.showImageAndPoints(img, featsFAST);
494 
495  cout << "Computing SIFT descriptors only ... [f_harris+sift.txt]" << endl;
496  tictac.Tic();
497  fExt.options.SIFTOptions.implementation = CFeatureExtraction::Hess;
498  fExt.computeDescriptors(img, featsHarris, descSIFT);
499  cout << format(" %.03fms", tictac.Tac() * 1000) << endl << endl;
500  featsHarris.saveToTextFile("f_harris+sift.txt");
501 
502  cout << "Extracting KLT features... [f_klt.txt]" << endl;
503  tictac.Tic();
504  fExt.options.featsType = featKLT;
505  fExt.options.KLTOptions.threshold = 0.05f;
506  fExt.options.KLTOptions.radius = 5;
507  fExt.detectFeatures(img, featsKLT, 0, 10);
508  cout << "Detected " << featsKLT.size() << " features in ";
509  cout << format(" %.03fms", tictac.Tac() * 1000) << endl << endl;
510  featsKLT.saveToTextFile("f_klt.txt");
511  wind2.setWindowTitle("KLT detected features");
512  wind2.showImageAndPoints(img, featsKLT);
513 
514  cout << "Extracting SIFT features... [f_sift_hess.txt]" << endl;
515  tictac.Tic();
516  fExt.options.featsType = featSIFT;
517  fExt.options.SIFTOptions.implementation = CFeatureExtraction::Hess;
518  fExt.detectFeatures(img, featsSIFT_Hess);
519  cout << "Detected " << featsSIFT_Hess.size() << " features in ";
520  cout << format(" %.03fms", tictac.Tac() * 1000) << endl << endl;
521  featsSIFT_Hess.saveToTextFile("f_sift_hess.txt");
522  wind3.setWindowTitle("SIFT Hess detected features");
523  wind3.showImageAndPoints(img, featsSIFT_Hess);
524 
525  cout << "Extracting SURF features... [f_surf.txt]" << endl;
526  tictac.Tic();
527  fExt.options.featsType = featSURF;
528  fExt.detectFeatures(img, featsSURF);
529  cout << "Detected " << featsSURF.size() << " features in ";
530  cout << format(" %.03fms", tictac.Tac() * 1000) << endl << endl;
531  featsSURF.saveToTextFile("f_surf.txt");
532  wind4.setWindowTitle("SURF detected features");
533  wind4.showImageAndPoints(img, featsSURF);
534 
535  cout << "Computing spin images descriptors only ... [f_harris+spinimgs.txt]"
536  << endl;
537  tictac.Tic();
538  fExt.options.SpinImagesOptions.radius = 13;
541  fExt.computeDescriptors(img, featsHarris, descSpinImages);
542  cout << format(" %.03fms", tictac.Tac() * 1000) << endl << endl;
543  featsHarris.saveToTextFile("f_harris+spinimgs.txt");
544 
546 
547  return;
548 }
549 
551 {
552  CDisplayWindow wind1, wind2;
553  CFeatureExtraction fExt;
554  CFeatureList featsHarris;
555  CImage img;
556 
557  string the_img = myDataDir + string("test_image.jpg");
558 
559  if (!img.loadFromFile(the_img))
560  {
561  cerr << "Cannot load " << the_img << endl;
562  return;
563  }
564  cout << "Loaded test image: " << the_img << endl;
565 
566  CTicTac tictac;
567 
568  cout << "Extracting Harris features (tiled)... [f_harris_tiled.txt]";
569 
571 
572  tictac.Tic();
573  fExt.detectFeatures(img, featsHarris);
574  cout << format(" %.03fms", tictac.Tac() * 1000) << endl;
575 
576  cout << "Detected " << featsHarris.size() << " features in " << endl;
577  featsHarris.saveToTextFile("f_harris_tiled.txt");
578  wind1.setWindowTitle("Harris detected features (Tiled image)");
579  wind1.showTiledImageAndPoints(img, featsHarris);
580 
581  cout << "Extracting Harris features... [f_harris.txt]";
582 
583  tictac.Tic();
584  fExt.detectFeatures(img, featsHarris);
585  cout << format(" %.03fms", tictac.Tac() * 1000) << endl;
586 
587  featsHarris.saveToTextFile("f_harris.txt");
588  wind2.setWindowTitle("Harris detected features");
589  wind2.showTiledImageAndPoints(img, featsHarris);
590 
592 
593  return;
594 }
595 
596 int main(int argc, char** argv)
597 {
598  try
599  {
601  // TestExtractFeatures();
602  // TestExtractFeaturesTile();
603  // TestMatchingComparative();
604  // TestORBTiled();
605 
606  // CFeatureList fs;
607  // fs.loadFromTextFile("f_harris+sift.txt");
608  // fs.saveToTextFile("f_harris+sift2.txt");
609 
610  return 0;
611  }
612  catch (const std::exception& e)
613  {
614  std::cerr << "MRPT error: " << mrpt::exception_to_str(e) << std::endl;
615  return -1;
616  }
617  catch (...)
618  {
619  printf("Another exception!!");
620  return -1;
621  }
622 }
void update_patch(const CImage &patch, const unsigned int col, const unsigned int row)
Update a part of this image with the "patch" given as argument.
Definition: CImage.cpp:1154
double Tac() noexcept
Stops the stopwatch.
Definition: CTicTac.cpp:86
void drawCircle(int x, int y, int radius, const mrpt::img::TColor &color=mrpt::img::TColor(255, 255, 255), unsigned int width=1) override
Draws a circle of a given radius.
Definition: CImage.cpp:1130
void line(int x0, int y0, int x1, int y1, const mrpt::img::TColor color, unsigned int width=1, TPenStyle penStyle=psSolid) override
Draws a line.
Definition: CImage.cpp:1117
struct mrpt::vision::CFeatureExtraction::TOptions::TFASTOptions FASTOptions
void TestExtractFeatures()
void TestMatchingComparative()
std::string std::string format(std::string_view fmt, ARGS &&... args)
Definition: format.h:26
void showImagesAndMatchedPoints(const mrpt::img::CImage &img1, const mrpt::img::CImage &img2, const MATCHEDLIST &mList, const mrpt::img::TColor &color=mrpt::img::TColor::red(), bool showNumbers=false)
Show a pair of given color or grayscale images (put together) on the window and print a set of matche...
unsigned int radius
Maximum radius of the area of which the histogram is built, in pixel units (default=20 pixels) ...
Intensity-domain spin image descriptors.
void detectFeatures(const mrpt::img::CImage &img, CFeatureList &feats, const unsigned int init_ID=0, const unsigned int nDesiredFeatures=0, const TImageROI &ROI=TImageROI())
Extract features from the image based on the method defined in TOptions.
size_t size() const
Definition: CFeature.h:352
TOptions options
Set all the parameters of the desired method here before calling detectFeatures() ...
void TestExtractFeaturesTile()
A high-performance stopwatch, with typical resolution of nanoseconds.
std::string myDataDir
void TestExtractMatchProjectAndPaint()
size_t getHeight() const override
Returns the height of the image in pixels.
Definition: CImage.cpp:849
Scale Invariant Feature Transform [LOWE&#39;04].
STL namespace.
void joinImagesHorz(const CImage &im1, const CImage &im2)
Joins two images side-by-side horizontally.
Definition: CImage.cpp:1887
const string the_img_for_extract_feats
bool use_KLT_response
(default=false) If true, use CImage::KLT_response to compute the response at each point...
unsigned int min_distance
(default=5) minimum distance between features (in pixels)
void setWindowTitle(const std::string &str) override
Changes the window title text.
bool loadFromFile(const std::string &fileName, int isColor=-1)
Load image from a file, whose format is determined from the extension (internally uses OpenCV)...
Definition: CImage.cpp:305
size_t getWidth() const override
Returns the width of the image in pixels.
Definition: CImage.cpp:818
void showImageAndPoints(const mrpt::img::CImage &img, const mrpt::math::CVectorFloat &x, const mrpt::math::CVectorFloat &y, const mrpt::img::TColor &color=mrpt::img::TColor::red(), bool showNumbers=false)
Show a given color or grayscale image on the window and print a set of points on it.
struct mrpt::vision::CFeatureExtraction::TOptions::TSpinImagesOptions SpinImagesOptions
virtual void filledRectangle(int x0, int y0, int x1, int y1, const mrpt::img::TColor color)
Draws a filled rectangle.
Definition: CCanvas.cpp:205
This class creates a window as a graphical user interface (GUI) for displaying images to the user...
void TestMatchFeatures()
Classes for computer vision, detectors, features, etc.
Definition: CDifodo.h:17
float threshold
(default=0.05f) for rejecting weak local maxima (with min_eig < threshold*max(eig_image) ...
TKeyPointMethod featsType
Type of the extracted features.
Speeded Up Robust Feature [BAY&#39;06].
mrpt::gui::CDisplayWindow3D::Ptr win
FAST feature detector, OpenCV&#39;s implementation ("Faster and better: A machine learning approach to...
A list of visual features, to be used as output by detectors, as input/output by trackers, etc.
Definition: CFeature.h:275
void setPos(int x, int y) override
Changes the position of the window on the screen.
void pause(const std::string &msg=std::string("Press any key to continue...")) noexcept
Shows the message "Press any key to continue" (or other custom message) to the current standard outpu...
Definition: os.cpp:430
void saveToTextFile(const std::string &fileName, bool APPEND=false)
Save feature list to a text file.
Definition: CFeature.cpp:881
void drawFeatures(const FEATURELIST &list, const TColor &color=TColor::red(), const bool showIDs=false, const bool showResponse=false, const bool showScale=false, const char marker='+')
Draws a set of marks (or scaled circles for features with scale) onto the image, given a generic cont...
Definition: CCanvas.h:280
const char * argv[]
Harris border and corner detector [HARRIS].
struct mrpt::vision::CFeatureExtraction::TOptions::TSIFTOptions SIFTOptions
unsigned int hist_size_intensity
Number of bins in the "intensity" axis of the 2D histogram (default=10).
size_t matchFeatures(const CFeatureList &list1, const CFeatureList &list2, CMatchedFeatureList &matches, const TMatchingOptions &options=TMatchingOptions(), const TStereoSystemParams &params=TStereoSystemParams())
Find the matches between two lists of features which must be of the same type.
A structure containing options for the matching.
struct mrpt::vision::CFeatureExtraction::TOptions::TKLTOptions KLTOptions
Kanade-Lucas-Tomasi feature [SHI&#39;94].
double computeSAD(const mrpt::img::CImage &patch1, const mrpt::img::CImage &patch2)
Calculates the Sum of Absolutes Differences (range [0,1]) between two patches.
std::string exception_to_str(const std::exception &e)
Builds a nice textual representation of a nested exception, which if generated using MRPT macros (THR...
Definition: exceptions.cpp:59
void showImage(const mrpt::img::CImage &img)
Show a given color or grayscale image on the window.
virtual void textOut(int x0, int y0, const std::string &str, const mrpt::img::TColor color)
Renders 2D text using bitmap fonts.
Definition: CCanvas.cpp:374
Classes for creating GUI windows for 2D and 3D visualization.
Definition: about_box.h:14
const int argc
A RGB color - 8bit.
Definition: TColor.h:25
void Tic() noexcept
Starts the stopwatch.
Definition: CTicTac.cpp:75
unsigned int patchSize
Size of the patch to extract, or 0 if no patch is desired (default=21).
void openCV_cross_correlation(const mrpt::img::CImage &img, const mrpt::img::CImage &patch_img, size_t &x_max, size_t &y_max, double &max_val, int x_search_ini=-1, int y_search_ini=-1, int x_search_size=-1, int y_search_size=-1)
Computes the correlation between this image and another one, encapsulating the openCV function cvMatc...
TMatchingMethod matching_method
Matching method.
unsigned int hist_size_distance
Number of bins in the "distance" axis of the 2D histogram (default=10).
void computeDescriptors(const mrpt::img::CImage &in_img, CFeatureList &inout_features, TDescriptorType in_descriptor_list)
Compute one (or more) descriptors for the given set of interest points onto the image, which may have been filled out manually or from detectFeatures.
void showTiledImageAndPoints(const mrpt::img::CImage &img, const FEATURELIST &list, const mrpt::img::TColor &color=mrpt::img::TColor::red())
Show a given color or grayscale image on the window and print a set of points on it and a set of line...
A class for storing images as grayscale or RGB bitmaps.
Definition: img/CImage.h:148
The central class from which images can be analyzed in search of different kinds of interest points a...
A graphical user interface (GUI) for efficiently rendering 3D scenes in real-time.
A list of features.
Definition: CFeature.h:494



Page generated by Doxygen 1.8.14 for MRPT 2.0.1 Git: 0fef1a6d7 Fri Apr 3 23:00:21 2020 +0200 at vie abr 3 23:20:28 CEST 2020