Skip to content

Instantly share code, notes, and snippets.

View leonmavr's full-sized avatar
🎯
Focusing

Leo Mav leonmavr

🎯
Focusing
View GitHub Profile
@leonmavr
leonmavr / main.cpp
Created October 13, 2022 22:27 — forked from omaraflak/main.cpp
Image convolution in C++ + Gaussian blur
#include <iostream>
#include <vector>
#include <assert.h>
#include <cmath>
#include <png++/png.hpp>
using namespace std;
typedef vector<double> Array;
typedef vector<Array> Matrix;