* flattening the image (merging layers/frames)
* transforming the color space to gray scale
- * resizing to 16 by 16 pixel while applying Gaussian blur
+ * resizing to 16 by 16 pixel using box blur
* normalizing contrast and brightness
* conversion to monochromatic image
* interpreting the pixel values as 256 bit hash value
goto ERR2;
wand2 = MagickFlattenImages(wand);
MagickSetImageColorspace(wand2, GRAYColorspace);
- MagickResizeImage(wand2, 16, 16, GaussianFilter, blur);
+ MagickResizeImage(wand2, 16, 16, BoxFilter, blur);
MagickNormalizeImage(wand2);
MagickGetImagePixels(wand2, 0, 0, 16, 16, "I", CharPixel, pix);
uint64_t h = 0;