4#include <opencv2/core/core.hpp>
5#include <opencv2/imgproc.hpp>
6#include "BlurAlgorithm.h"
36 QString m_name =
"Sobel Operator";
The BlurAlgorithm interface provides an interface for different algorithms calculating blur values fo...
Definition BlurAlgorithm.h:27
The BlurSobel class calulates blur values using the sobel operator. It calulates the blur values base...
Definition blursobel.h:22
double singleCalculation(const cv::Mat &image) override
singleCalculation This functions implements the actual blur algortihm
Definition blursobel.cpp:99
BlurSobel()
BlurSobel standard constructor.
Definition blursobel.cpp:95
QString getName() override
getName returns the algorithm name.
Definition blursobel.cpp:97