Changes

Jump to: navigation, search

GPU621/Group 3

304 bytes removed, 09:13, 12 April 2023
Class Declaration
<syntaxhighlight>
#include <cmath>
#include <vector>
#include <opencv2/core.hpp>
#include <opencv2/opencv.hpp>
#include <iostream>
#include <omp.h>
#include <opencv2/imgproc.hpp>
#include <algorithm>
 
 
//class to hold the functionality for openMP img processing
class openMP_imgProcessor {
//laplacian kernel used in sharpening
std::vector<std::vector<double>> LapKernel_ = {
{0, 0, 1, 0, 0}, {0, 1, 2, 1, 0}, {1, 2, -7, 2, 1}, {0, 1, 2, 1, 0}, {0, 0, 1, 0, 0}
};
72
edits

Navigation menu