mirror of
https://github.com/2martens/uni.git
synced 2026-05-07 11:56:26 +02:00
21 lines
450 B
C++
21 lines
450 B
C++
#ifndef SHEET3_GAUSS_PYRAMID_H
|
|
#define SHEET3_GAUSS_PYRAMID_H
|
|
|
|
#include <opencv2/opencv.hpp>
|
|
|
|
class gauss_pyramid
|
|
{
|
|
private:
|
|
std::vector<cv::Mat> _layers;
|
|
public:
|
|
gauss_pyramid();
|
|
gauss_pyramid(const cv::Mat img, float sigma, int number_of_layers);
|
|
cv::Mat get(int layer) const;
|
|
cv::Mat get(int layer);
|
|
unsigned long get_number_of_layers() const;
|
|
unsigned long get_number_of_layers();
|
|
};
|
|
|
|
|
|
#endif //SHEET3_GAUSS_PYRAMID_H
|