#include <feature/InterestPoint.h>
#include <feature/Detector.h>
#include <utils/Convolution.h>
#include <utils/PeakFinder.h>
#include <vector>
Go to the source code of this file.
Classes | |
class | MultiScaleDetector |
Defines | |
#define | MAX_KERNEL_SIZE 50 |
#define | MIN_KERNEL_SIZE 3 |
Enumerations | |
enum | SmoothingFilterFamily { GAUSSIAN, BESSEL } |
#define MAX_KERNEL_SIZE 50 |
Definition at line 34 of file MultiScaleDetector.h.
#define MIN_KERNEL_SIZE 3 |
Definition at line 33 of file MultiScaleDetector.h.
The smoothing kernel used in the detector.
GAUSSIAN |
The Gaussian smoothing kernel. It is the optimal kernel in the continuous case. |
BESSEL |
The Bessel smoothing kernel. It is the optimal kernel in the discrete case. |
Definition at line 41 of file MultiScaleDetector.h.