Basic working GUI

This commit is contained in:
2025-10-14 18:14:01 +02:00
parent 15fbb4ae33
commit 90b9b2cb92
9 changed files with 473 additions and 248 deletions
+10
View File
@@ -0,0 +1,10 @@
#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