13 lines
246 B
C++
13 lines
246 B
C++
/*
|
|
Author: Vargha Csongor Csaba
|
|
Created: 2023-06-25 10:23:33
|
|
*/
|
|
#ifndef TV_DENOISING_H
|
|
#define TV_DENOISING_H
|
|
|
|
#include <opencv2/opencv.hpp>
|
|
|
|
extern "C" void TVDenoising(cv::Mat& image, float lambda, int maxIterations);
|
|
|
|
#endif // TV_DENOISING_H
|