Created
September 17, 2011 20:51
-
-
Save DSchougaard/1224356 to your computer and use it in GitHub Desktop.
Main
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int main(){ | |
int i; | |
int MAX = 5; | |
IMAGE img; | |
bmp_open("example24.bmp" ,&img); | |
for( i = 0; i < MAX; i ++){ | |
applyFilterSimple(&img); | |
} | |
printf("Filter Applied\n"); | |
bmp_save("8_example24.bmp", &img); | |
printf("Process completed!\n"); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment