https://github.com/Bruhout/Help
Its code for taking a .bmp image and adding a pixelated filter on it. (that part isn't implemented yet)
The grid_input reads RGB values from the input image and grid_output contains RGB values that are to be written to the output image.
The makefile is included in the GitHub repo, I'm trying to compile all the files first and link them next.
heres the error i get
```/usr/bin/ld: input_image.o:(.bss+0x0): multiple definition of grid_input'; main.o:(.bss+0x0): first defined here /usr/bin/ld: output_image.o:(.bss+0x0): multiple definition of grid_input'; main.o:(.bss+0x0): first defined here
collect2: error: ld returned 1 exit status
make: *** [makefile:5: build] Error 1
I cant tell why ? I added header guards in my .hpp files and didnt #include any .cpp files as recommended