MRPT  1.9.9
CFeatureExtraction_logPolarImg.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-2019, 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 "vision-precomp.h" // Precompiled headers
11 
13 
14 // Universal include for all versions of OpenCV
15 #include <mrpt/otherlibs/do_opencv_includes.h>
16 
17 using namespace mrpt;
18 using namespace mrpt::vision;
19 using namespace mrpt::img;
20 using namespace mrpt::system;
21 using namespace std;
22 
24  const mrpt::img::CImage& in_img, CFeatureList& in_features)
25 {
27 #if MRPT_HAS_OPENCV
28 
30  profiler, "internal_computeLogPolarImageDescriptors");
31 
32  ASSERT_(options.LogPolarImagesOptions.radius > 1);
33  ASSERT_(options.LogPolarImagesOptions.num_angles > 1);
34  ASSERT_(options.LogPolarImagesOptions.rho_scale > 0);
35 
36  const unsigned int radius = options.LogPolarImagesOptions.radius;
37  const unsigned int patch_h = options.LogPolarImagesOptions.num_angles;
38  const double rho_scale = options.LogPolarImagesOptions.rho_scale;
39  const unsigned int patch_w =
40  rho_scale * std::log(static_cast<double>(radius));
41 
42  mrpt::img::CImage logpolar_frame(
43  patch_w, patch_h, in_img.getChannelCount());
44 
45  // Compute intensity-domain spin images
46  for (auto& f : in_features)
47  {
48  // Overwrite scale with the descriptor scale:
49  f.keypoint.octave = radius;
50 
51  // Use OpenCV to convert:
52 #if MRPT_OPENCV_VERSION_NUM < 0x300
53  const cv::Mat& in = in_img.asCvMatRef();
54  cv::Mat& out = logpolar_frame.asCvMatRef();
55  cvLogPolar(
56  &in, &out,
57 #else
58  cv::logPolar(
59  in_img.asCvMatRef(), logpolar_frame.asCvMatRef(),
60 #endif
61  cv::Point2f(f.keypoint.pt.x, f.keypoint.pt.y), rho_scale,
62  CV_INTER_LINEAR + CV_WARP_FILL_OUTLIERS);
63 
64  // Get the image as a matrix and save as patch:
65  f.descriptors.LogPolarImg.emplace();
66  logpolar_frame.getAsMatrix(*f.descriptors.LogPolarImg);
67 
68  } // end for it
69 
70 #else
71  THROW_EXCEPTION("This method needs MRPT compiled with OpenCV support");
72 #endif
73  MRPT_END
74 }
#define MRPT_START
Definition: exceptions.h:241
#define THROW_EXCEPTION(msg)
Definition: exceptions.h:67
A safe way to call enter() and leave() of a mrpt::system::CTimeLogger upon construction and destructi...
cv::Mat & asCvMatRef()
Get a reference to the internal cv::Mat, which can be resized, etc.
Definition: CImage.cpp:233
TImageChannels getChannelCount() const
Returns the number of channels, typically 1 (GRAY) or 3 (RGB)
Definition: CImage.cpp:898
STL namespace.
#define ASSERT_(f)
Defines an assertion mechanism.
Definition: exceptions.h:120
Classes for computer vision, detectors, features, etc.
Definition: CDifodo.h:17
A list of visual features, to be used as output by detectors, as input/output by trackers, etc.
Definition: CFeature.h:275
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
void internal_computeLogPolarImageDescriptors(const mrpt::img::CImage &in_img, CFeatureList &in_features)
Compute a log-polar image descriptor of the provided features into the input image.
#define MRPT_END
Definition: exceptions.h:245
GLuint in
Definition: glext.h:7391
A class for storing images as grayscale or RGB bitmaps.
Definition: img/CImage.h:147



Page generated by Doxygen 1.8.14 for MRPT 1.9.9 Git: 8fe78517f Sun Jul 14 19:43:28 2019 +0200 at lun oct 28 02:10:00 CET 2019