35 #ifndef GDALSIMPLESURF_H_
36 #define GDALSIMPLESURF_H_
190 double *padfDescriptor;
217 void Initialize(
const double **padfImg,
int nHeight,
int nWidth);
228 double GetValue(
int nRow,
int nCol);
280 double **pMatrix =
nullptr;
451 class MatchedPointPairInfo
454 MatchedPointPairInfo(
int nInd_1,
int nInd_2,
double dfDist)
455 : ind_1(nInd_1), ind_2(nInd_2), euclideanDist(dfDist)
461 double euclideanDist;
513 int nYSize,
double **padfImg,
514 int nHeight,
int nWidth);
531 std::vector<GDALFeaturePoint> *
556 std::vector<GDALFeaturePoint> *poFirstCollect,
557 std::vector<GDALFeaturePoint> *poSecondCollect,
578 static void NormalizeDistances(std::list<MatchedPointPairInfo> *poList);
Class of "feature point" in raster.
Definition: gdal_simplesurf.h:52
GDALFeaturePoint()
Standard constructor.
Definition: gdal_simplesurf.cpp:38
void SetY(int nY)
Set Y coordinate of point.
Definition: gdal_simplesurf.cpp:96
GDALFeaturePoint & operator=(const GDALFeaturePoint &point)
Assignment operator.
Definition: gdal_simplesurf.cpp:59
int GetSign() const
Fetch sign of Hessian determinant of point.
Definition: gdal_simplesurf.cpp:121
void SetX(int nX)
Set X coordinate of point.
Definition: gdal_simplesurf.cpp:86
static const int DESC_SIZE
Descriptor length.
Definition: gdal_simplesurf.h:109
int GetY() const
Fetch Y-coordinate (line) of point.
Definition: gdal_simplesurf.cpp:91
int GetRadius() const
Fetch radius of point.
Definition: gdal_simplesurf.cpp:111
int GetScale() const
Fetch scale of point.
Definition: gdal_simplesurf.cpp:101
int GetX() const
Fetch X-coordinate (pixel) of point.
Definition: gdal_simplesurf.cpp:81
void SetScale(int nScale)
Set scale of point.
Definition: gdal_simplesurf.cpp:106
void SetRadius(int nRadius)
Set radius of point.
Definition: gdal_simplesurf.cpp:116
void SetSign(int nSign)
Set sign of point.
Definition: gdal_simplesurf.cpp:126
double & operator[](int nIndex)
Provide access to point's descriptor.
Definition: gdal_simplesurf.cpp:131
Integral image class (summed area table).
Definition: gdal_simplesurf.h:203
int GetHeight()
Fetch height of integral image.
Definition: gdal_octave.cpp:38
double HaarWavelet_Y(int nRow, int nCol, int nSize)
Get value of vertical Haar wavelet in specified square grid.
Definition: gdal_octave.cpp:143
double GetValue(int nRow, int nCol)
Fetch value of specified position in integral image.
Definition: gdal_octave.cpp:90
double HaarWavelet_X(int nRow, int nCol, int nSize)
Get value of horizontal Haar wavelet in specified square grid.
Definition: gdal_octave.cpp:137
void Initialize(const double **padfImg, int nHeight, int nWidth)
Compute integral image for specified array.
Definition: gdal_octave.cpp:48
double GetRectangleSum(int nRow, int nCol, int nWidth, int nHeight)
Get sum of values in specified rectangular grid.
Definition: gdal_octave.cpp:98
int GetWidth()
Fetch width of integral image.
Definition: gdal_octave.cpp:43
Class for computation and storage of Hessian values in SURF-based algorithm.
Definition: gdal_simplesurf.h:295
int height
Image height in pixels.
Definition: gdal_simplesurf.h:346
int ** signs
Hessian signs for speeded matching.
Definition: gdal_simplesurf.h:354
double ** detHessians
Hessian values for image pixels.
Definition: gdal_simplesurf.h:350
int filterSize
Length of the side of filter.
Definition: gdal_simplesurf.h:330
int radius
Length of the border.
Definition: gdal_simplesurf.h:334
int octaveNum
Octave which contains this layer (1,2,3...)
Definition: gdal_simplesurf.h:326
int width
Image width in pixels.
Definition: gdal_simplesurf.h:342
int scale
Scale for this layer.
Definition: gdal_simplesurf.h:338
void ComputeLayer(GDALIntegralImage *poImg)
Perform calculation of Hessian determinants and their signs for specified integral image.
Definition: gdal_octave.cpp:172
Class for handling octave layers in SURF-based algorithm.
Definition: gdal_simplesurf.h:365
static const int INTERVALS
Value for constructing internal octave space.
Definition: gdal_simplesurf.h:419
int octaveStart
Number of bottom octave.
Definition: gdal_simplesurf.h:424
GDALOctaveLayer *** pMap
2-dimensional array of octave layers
Definition: gdal_simplesurf.h:414
GDALOctaveMap(int nOctaveStart, int nOctaveEnd)
Create octave space.
Definition: gdal_octave.cpp:244
void ComputeMap(GDALIntegralImage *poImg)
Calculate Hessian values for octave space (for all stored octave layers) using specified integral ima...
Definition: gdal_octave.cpp:256
int octaveEnd
Number of top octave.
Definition: gdal_simplesurf.h:429
static bool PointIsExtremum(int row, int col, GDALOctaveLayer *bot, GDALOctaveLayer *mid, GDALOctaveLayer *top, double threshold)
Method makes decision that specified point in middle octave layer is maximum among all points from 3x...
Definition: gdal_octave.cpp:263
A single raster band (or channel).
Definition: gdal_priv.h:1504
Class for searching corresponding points on images.
Definition: gdal_simplesurf.h:445
std::vector< GDALFeaturePoint > * ExtractFeaturePoints(GDALIntegralImage *poImg, double dfThreshold)
Find feature points using specified integral image.
Definition: gdal_simplesurf.cpp:254
GDALSimpleSURF(int nOctaveStart, int nOctaveEnd)
Prepare class according to specified parameters.
Definition: gdal_simplesurf.cpp:164
static CPLErr MatchFeaturePoints(std::vector< GDALFeaturePoint * > *poMatchPairs, std::vector< GDALFeaturePoint > *poFirstCollect, std::vector< GDALFeaturePoint > *poSecondCollect, double dfThreshold)
Find corresponding points (equal points in two collections).
Definition: gdal_simplesurf.cpp:385
static CPLErr ConvertRGBToLuminosity(GDALRasterBand *red, GDALRasterBand *green, GDALRasterBand *blue, int nXSize, int nYSize, double **padfImg, int nHeight, int nWidth)
Convert image with RGB channels to grayscale using "luminosity" method.
Definition: gdal_simplesurf.cpp:172
Various convenience functions for CPL.
CPLErr
Error category.
Definition: cpl_error.h:53
#define CPL_DISALLOW_COPY_ASSIGN(ClassName)
Helper to remove the copy and assignment constructors so that the compiler will not generate the defa...
Definition: cpl_port.h:1042