1
0
mirror of https://github.com/2martens/uni.git synced 2026-05-06 11:26:25 +02:00

[CCV] Created skeleton for exercise 4

Signed-off-by: Jim Martens <github@2martens>
This commit is contained in:
2017-05-02 14:53:07 +02:00
parent 100b0d2375
commit 2e157035c6
6 changed files with 122 additions and 0 deletions

View File

@ -0,0 +1,17 @@
#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, float sigma, int number_of_layers);
cv::Mat get(int layer);
};
#endif //SHEET3_GAUSS_PYRAMID_H