Routines



MedianImage routine


Run the median filtering algorithm implementation of one input gray image and put the result in output gray image.

required external library: image

void MedianImage( GrayImage in, GrayImage out, unsigned int level );


Parameters

in [in] GrayImage variable that embed the input image
out [out] GrayImage variable that embed the result image of filtering task
level [in] parameter of median filtering algorithm

Return values

The routine does not return anything.

Example code

loadlib image;


GrayImage in,out;
main()
{
unsigned int lx,ly;
...
LoadGrayImage(in,"anger.bmp");
MedianImage(in,out,3);
}


Requirements

  • external dynamic link library: image.dll on the server


  • If interested in this project, please fell free to contact the personnel of our group. The project leader is dr.drs. L.J.M. Rothkrantz