147
edits
Changes
→Linux
Compile the binaries using the following command:
g++ -O2 -std=c++0x -Wall -pedantic [your chosen file name].cpp -o gblur
The command line arguments are structured as follows:
[input image filename].bmp [output image filename].bmp [x - sigma value] [y - sigmea value]
Run the compiled program
./gblur cinque_terre.bmp cinque_terre_BLURRED.bmp 3.0 3.0
====Mac OS X====