Design
imagepro.txt
Associated article: A Memory-Constrained Image-Processing Architecture
Tags: Design
Published source code accompanying the article by Mayur Patel in which he presents an image-processing architecture that lets you control memory consumption for high-performance image processing. Also see IMAGEPRO.ZIP.
_A Memory-Constrained Image Processing Architecture_
by Mayur Patel
Example 1:
#include <SGIReader.h>
#include <Contraster.h>
#include <SGIWriter.h>
int main ( int argc, char *argv[] )
{
SGIReader in( "test.rgb" );
Contraster contrasted( &in, 1.3 );
...


