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

[CVV] Added laplacian pyramid

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
2017-05-09 15:50:39 +02:00
parent b9d9ae72d7
commit c196e17ed6
3 changed files with 32 additions and 1 deletions

View File

@ -0,0 +1,20 @@
#ifndef SHEET5_LAPLACIAN_PYRAMID_H
#define SHEET5_LAPLACIAN_PYRAMID_H
#include <opencv2/opencv.hpp>
#include "gauss_pyramid.h
class laplacian_pyramid {
private:
std::vector<cv::Mat> _layers;
public:
/**
* Initializes the laplacian pyramid.
* @param pyramid the gaussian pyramid
* @param sigma the blur factor
*/
laplacian_pyramid(const gauss_pyramid& pyramid, float sigma);
};
#endif //SHEET5_LAPLACIAN_PYRAMID_H