Skip to content

Instantly share code, notes, and snippets.

@DSchougaard
Created September 17, 2011 20:51
Show Gist options
  • Save DSchougaard/1224356 to your computer and use it in GitHub Desktop.
Save DSchougaard/1224356 to your computer and use it in GitHub Desktop.
Main
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