You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A sequential and parallel implementation of the Gaussian filter using nxn masks in C++, using the CImg library. The CPU parallel code was made using the OpenMP library and the GPU parallel code was made in CUDA.
For running convolution.cpp: g++ convolution.cpp -lm -lpthread -lX11 -std=c++11
For running convolution_parallel.cpp: g++ convolution_parallel.cpp -lm -lpthread -lX11 -std=c++11 -fopenmp
About
A sequential and parallel implementation of the Gaussian filter using nxn masks in C++, using the CImg library. The CPU parallel code was made using the OpenMP library and the GPU parallel code was made in CUDA.