Skip to content

Instantly share code, notes, and snippets.

@kritzikratzi
Created January 11, 2010 19:17
Show Gist options
  • Save kritzikratzi/274495 to your computer and use it in GitHub Desktop.
Save kritzikratzi/274495 to your computer and use it in GitHub Desktop.
for (int bild = 0; bild < anzahl_bilder; ++bild) {
for (int pixel=0; pixel < wid*hig; ++pixel) {// adding all images to one "ultra bright" image
allr[pixel] = alle_bilder[0][pixel];
allg[pixel] = alle_bilder[1][pixel];
allb[pixel] = alle_bilder[2][pixel];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment