mirror of
https://github.com/2martens/uni.git
synced 2026-05-06 11:26:25 +02:00
[CCV] Removed hardcoded gabor parameters
Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
@ -14,15 +14,22 @@ private:
|
||||
/**
|
||||
* Initializes the Gabor filters.
|
||||
* @param num_orientations the number of orientations to use
|
||||
* @param size the size of the Gabor filter
|
||||
* @param wavelength the wavelength
|
||||
* @param standard_deviation the standard deviation
|
||||
*/
|
||||
void initialize_gabor_filters(float num_orientations);
|
||||
void initialize_gabor_filters(float num_orientations, int size, double wavelength, double standard_deviation);
|
||||
public:
|
||||
/**
|
||||
* Initializes the oriented pyramid.
|
||||
* @param pyramid the laplacian pyramid
|
||||
* @param num_orientations the number of Gabor filters to apply
|
||||
* @param size the size of the Gabor filter
|
||||
* @param wavelength the wavelength
|
||||
* @param standard_deviation the standard deviation
|
||||
*/
|
||||
oriented_pyramid(const laplacian_pyramid& pyramid, int num_orientations);
|
||||
oriented_pyramid(const laplacian_pyramid& pyramid, int num_orientations, int size,
|
||||
double wavelength, double standard_deviation);
|
||||
|
||||
/**
|
||||
* Computes the feature maps.
|
||||
|
||||
Reference in New Issue
Block a user