1
0
mirror of https://github.com/2martens/uni.git synced 2026-05-06 19:36:26 +02:00
Files
uni/ccv/sheet3/gauss_pyramid.h
2017-04-28 15:19:10 +02:00

18 lines
307 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(cv::Mat img, int number_of_layers);
cv::Mat get(int layer);
};
#endif //SHEET3_GAUSS_PYRAMID_H