22 #include <mrpt/examples_config.h> 23 string myDataDir(MRPT_EXAMPLES_BASE_DIRECTORY +
string(
"img_convolution_fft/"));
37 string imgL = MRPT_EXAMPLES_BASE_DIRECTORY +
38 string(
"vision_feature_extraction/") +
39 string(
"imgs/imL_p01.jpg");
40 string imgR = MRPT_EXAMPLES_BASE_DIRECTORY +
41 string(
"vision_feature_extraction/") +
42 string(
"imgs/imR_p01.jpg");
47 cerr <<
"Cannot load " << imgL << endl;
50 cout <<
"Loaded test image: " << imgL << endl;
54 cerr <<
"Cannot load " << imgR << endl;
57 cout <<
"Loaded test image: " << imgR << endl;
59 cout <<
"***************************************************" << endl;
60 cout <<
"***************************************************" << endl;
64 cout <<
"Detecting HARRIS features in LEFT image" << endl;
67 cout <<
"Detected " << featsHarris_L.
size() << endl;
69 cout <<
"Detecting HARRIS features in RIGHT image" << endl;
71 cout <<
"Detected " << featsHarris_R.
size() << endl;
73 cout <<
"***************************************************" << endl;
74 cout <<
"***************************************************" << endl;
81 cout <<
"Matching HARRIS features by CORRELATION" << endl;
84 cout <<
"Matches found: " << mHarris.size() << endl;
86 cout <<
"***************************************************" << endl;
97 CFeatureList featsHarris_L, featsHarris_R, featsSIFT_L, featsSIFT_R,
98 featsSURF_L, featsSURF_R, featsFAST_L, featsFAST_R;
102 string imgL = MRPT_EXAMPLES_BASE_DIRECTORY +
103 string(
"vision_feature_extraction/") +
104 string(
"imgs/imL_p01.jpg");
105 string imgR = MRPT_EXAMPLES_BASE_DIRECTORY +
106 string(
"vision_feature_extraction/") +
107 string(
"imgs/imR_p01.jpg");
117 cerr <<
"Cannot load " << imgL << endl;
120 cout <<
"Loaded test image: " << imgL << endl;
124 cerr <<
"Cannot load " << imgR << endl;
127 cout <<
"Loaded test image: " << imgR << endl;
129 cout <<
"***************************************************" << endl;
130 cout <<
"***************************************************" << endl;
134 cout <<
"Detecting HARRIS features in LEFT image" << endl;
137 cout <<
"Detected " << featsHarris_L.
size() << endl;
139 cout <<
"Detecting HARRIS features in RIGHT image" << endl;
141 cout <<
"Detected " << featsHarris_R.
size() << endl;
142 cout <<
"***************************************************" << endl;
145 cout <<
"Detecting SIFT features in LEFT image" << endl;
150 cout <<
"Detected " << featsSIFT_L.
size() << endl;
152 cout <<
"Detecting SIFT features in RIGHT image" << endl;
157 cout <<
"Detected " << featsSIFT_R.
size() << endl;
158 cout <<
"***************************************************" << endl;
161 cout <<
"Detecting SURF features in LEFT image" << endl;
164 cout <<
"Detected " << featsSURF_L.
size() << endl;
166 cout <<
"Detecting SURF features in RIGHT image" << endl;
168 cout <<
"Detected " << featsSURF_R.
size() << endl;
169 cout <<
"***************************************************" << endl;
172 cout <<
"Detecting FAST features in LEFT image" << endl;
175 cout <<
"Detected " << featsFAST_L.
size() << endl;
177 fast1.showImageAndPoints(imL, featsFAST_L);
179 cout <<
"Detecting FAST features in RIGHT image" << endl;
181 cout <<
"Detected " << featsFAST_R.
size() << endl;
182 cout <<
"***************************************************" << endl;
183 cout <<
"***************************************************" << endl;
185 fast2.showImageAndPoints(imR, featsFAST_R);
193 cout <<
"Matching HARRIS features by CORRELATION" << endl;
197 double T = tictac.
Tac();
198 cout <<
"[CC] Matches found: " << mHarris.size() <<
" in " << T * 1000.0f
204 matchFeatures(featsHarris_L, featsHarris_R, mHarris_SAD, opt);
206 cout <<
"[SAD] Matches found: " << mHarris_SAD.size() <<
" in " 207 << T * 1000.0f <<
" ms " << endl;
208 cout <<
"***************************************************" << endl;
212 cout <<
"Matching SIFT features by DESCRIPTOR" << endl;
216 cout <<
"Matches found: " << mSIFT.size() << endl;
217 cout <<
"***************************************************" << endl;
220 cout <<
"Matching SURF features by DESCRIPTOR" << endl;
224 cout <<
"Matches found: " << mSURF.size() << endl;
225 cout <<
"***************************************************" << endl;
228 cout <<
"Matching FAST features by CC" << endl;
233 cout <<
"[CC] Matches found: " << mFAST_CC.size() <<
" in " << T * 1000.0f
241 cout <<
"[SAD] Matches found: " << mFAST_SAD.size() <<
" in " << T * 1000.0f
243 cout <<
"***************************************************" << endl;
254 string imgL = MRPT_EXAMPLES_BASE_DIRECTORY +
255 string(
"vision_feature_extraction/") +
256 string(
"imgs/imL_p01.jpg");
257 string imgR = MRPT_EXAMPLES_BASE_DIRECTORY +
258 string(
"vision_feature_extraction/") +
259 string(
"imgs/imR_p01.jpg");
290 win2.
setPos(0, imH * 1.5);
291 CImage joinimage, copyjoinimage, copyInfoImage;
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)
305 const auto& pt1 = it1->keypoint.pt;
307 copyInfoImage = infoimage;
308 copyjoinimage = joinimage;
309 copyjoinimage.
line(pt1.x, 0, pt1.x, imH,
312 pt1.x + imW, 0, pt1.x + imW, imH,
315 0, pt1.y, imW + imW, pt1.y,
318 pt1.x, pt1.y, 4, TColor::green(),
322 bool firstMatch =
true;
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;
329 for (
auto it2 = list2.
begin(); it2 != list2.
end(); ++it2)
331 const auto& pt2 = it2->keypoint.pt;
333 if (fabs(pt1.y - pt2.y) <= 1.0 && pt1.x > pt2.x)
348 *it1->patch, *it2->patch, u, v, ncc);
356 float siftd = it1->descriptorSIFTDistanceTo(*it2);
357 if (siftd < minsiftd)
364 float surfd = it1->descriptorSURFDistanceTo(*it2);
365 if (surfd < minsurfd)
375 pt1.x + imW, 0, pt1.x + imW, imH,
381 pt2.x + imW, pt2.y, 4, TColor::blue(),
383 double rx0, rx1, ry0, ry1, tx, ty;
384 rx0 = pt2.x + imW - 15;
386 tx = pt2.x + imW - 13;
400 rx0, ry0, rx1, ry1,
TColor(150, 150, 150));
402 tx, ty,
format(
"%d", cnt), TColor::blue());
410 px, imH2 - 70,
format(
"%d", cnt), TColor::blue());
412 px, imH2 - 53,
format(
"%.2f", sad), TColor::blue());
414 px, imH2 - 41,
format(
"%.2f", ncc), TColor::blue());
416 px, imH2 - 29,
format(
"%.2f", siftd), TColor::blue());
418 px, imH2 - 17,
format(
"%.2f", surfd), TColor::blue());
424 80 + idxsad * 50, imH2 - 53,
format(
"%.2f", minsad),
427 80 + idxncc * 50, imH2 - 41,
format(
"%.2f", maxncc),
430 80 + idxsiftd * 50, imH2 - 29,
format(
"%.2f", minsiftd),
433 80 + idxsurfd * 50, imH2 - 17,
format(
"%.2f", minsurfd),
436 win.showImage(copyjoinimage);
453 CFeatureList featsHarris, featsKLT, featsSIFT_Hess, featsSIFT_Lowe,
454 featsSIFT_Vedaldi, featsSURF, featsFAST;
463 cout <<
"------------------------------------------------------------------" 472 cout <<
"Detect Harris features... [f_harris.txt]" << endl;
476 cout <<
"Detected " << featsHarris.
size() <<
" features in ";
477 cout <<
format(
" %.03fms", tictac.
Tac() * 1000) << endl << endl;
482 cout <<
"Detect FAST features... [f_fast.txt]" << endl;
489 cout <<
"Detected " << featsFAST.
size() <<
" features in ";
490 cout <<
format(
" %.03fms", tictac.
Tac() * 1000) << endl << endl;
495 cout <<
"Computing SIFT descriptors only ... [f_harris+sift.txt]" << endl;
499 cout <<
format(
" %.03fms", tictac.
Tac() * 1000) << endl << endl;
502 cout <<
"Extracting KLT features... [f_klt.txt]" << endl;
508 cout <<
"Detected " << featsKLT.
size() <<
" features in ";
509 cout <<
format(
" %.03fms", tictac.
Tac() * 1000) << endl << endl;
514 cout <<
"Extracting SIFT features... [f_sift_hess.txt]" << endl;
519 cout <<
"Detected " << featsSIFT_Hess.
size() <<
" features in ";
520 cout <<
format(
" %.03fms", tictac.
Tac() * 1000) << endl << endl;
525 cout <<
"Extracting SURF features... [f_surf.txt]" << endl;
529 cout <<
"Detected " << featsSURF.
size() <<
" features in ";
530 cout <<
format(
" %.03fms", tictac.
Tac() * 1000) << endl << endl;
535 cout <<
"Computing spin images descriptors only ... [f_harris+spinimgs.txt]" 542 cout <<
format(
" %.03fms", tictac.
Tac() * 1000) << endl << endl;
557 string the_img =
myDataDir + string(
"test_image.jpg");
561 cerr <<
"Cannot load " << the_img << endl;
564 cout <<
"Loaded test image: " << the_img << endl;
568 cout <<
"Extracting Harris features (tiled)... [f_harris_tiled.txt]";
574 cout <<
format(
" %.03fms", tictac.
Tac() * 1000) << endl;
576 cout <<
"Detected " << featsHarris.
size() <<
" features in " << endl;
581 cout <<
"Extracting Harris features... [f_harris.txt]";
585 cout <<
format(
" %.03fms", tictac.
Tac() * 1000) << endl;
612 catch (
const std::exception& e)
619 printf(
"Another exception!!");
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.
double Tac() noexcept
Stops the stopwatch.
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.
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.
void TestExtractFeatures()
void TestMatchingComparative()
std::string std::string format(std::string_view fmt, ARGS &&... args)
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...
Intensity-domain spin image descriptors.
void TestExtractFeaturesTile()
A high-performance stopwatch, with typical resolution of nanoseconds.
void TestExtractMatchProjectAndPaint()
size_t getHeight() const override
Returns the height of the image in pixels.
Scale Invariant Feature Transform [LOWE'04].
void joinImagesHorz(const CImage &im1, const CImage &im2)
Joins two images side-by-side horizontally.
const string the_img_for_extract_feats
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)...
size_t getWidth() const override
Returns the width of the image in pixels.
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.
virtual void filledRectangle(int x0, int y0, int x1, int y1, const mrpt::img::TColor color)
Draws a filled rectangle.
This class creates a window as a graphical user interface (GUI) for displaying images to the user...
Classes for computer vision, detectors, features, etc.
Speeded Up Robust Feature [BAY'06].
mrpt::gui::CDisplayWindow3D::Ptr win
FAST feature detector, OpenCV'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.
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...
void saveToTextFile(const std::string &fileName, bool APPEND=false)
Save feature list to a text file.
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...
Harris border and corner detector [HARRIS].
size_t matchFeatures(const CFeatureList &list1, const CFeatureList &list2, CMatchedFeatureList &matches, const TMatchingOptions &options=TMatchingOptions(), const TStereoSystemParams ¶ms=TStereoSystemParams())
Find the matches between two lists of features which must be of the same type.
A structure containing options for the matching.
Kanade-Lucas-Tomasi feature [SHI'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...
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.
Classes for creating GUI windows for 2D and 3D visualization.
void Tic() noexcept
Starts the stopwatch.
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.
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.
A graphical user interface (GUI) for efficiently rendering 3D scenes in real-time.