Design
openmp.txt
Associated article: Faster Image Processing with OpenMP
Tags: Design
Published source code accompanying the article by Henry Gabb and Bill Magro in which they use OpenMP- based tools to show how multithreading improves performance on multiprocessor systems.
Faster Image Processing with OpenMP
by Henry A. Gabb and Bill Magro
Listing One
void RadialBlur(void* data, int32 dataRowBytes, void* mask, int32 maskRowBytes, Rect* tileRect)
{
uint8* pixel = (uint8*)data; // Points to top left pixel of the image
uint8* maskPixel = (...


