11 lines
270 B
C++
11 lines
270 B
C++
#ifndef LAPLACIAN_H
|
|
#define LAPLACIAN_H
|
|
|
|
#include <cstdint>
|
|
#include <opencv2/opencv.hpp>
|
|
|
|
double laplacian(const uint16_t *img, int32_t *out, uint32_t width, uint32_t height);
|
|
bool reflow(const cv::Mat &ref, const cv::Mat &img, cv::Mat &warped);
|
|
|
|
#endif // LAPLACIAN_H
|