72
edits
Changes
→Class Declaration
<syntaxhighlight>
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}
};