Database
blur.txt
Associated article: Motion Blur Effects
Tags: Database Web Development
Published source code accompanying the article by Tim Wittenberg in which he shows you how to alter the appearance of "moving" objects by using blurring techniques to add realism and excitement to graphic images.
_Motion Blur Effects_
by Tim Wittenberg
Listing One
#define MAXIMAGES
int motionBlur(char *firstImagePath, char *outputDir, int
numFrames, int blurDepth){
memImage *images[MAXIMAGES];
char directory[MAXPATH],fileName[MAXPATH],prefix[MAXPATH],
inSuffix[MAXPATH];
char currentPath[MAXPATH], inPath[MAXPATH];
int frameNum, i, ...


