quick smoothing

asked 2015-01-11 18:00:45 -0600

Gilad Darmon gravatar image

updated 2020-10-19 07:46:52 -0600

 h = fspecial('average', filterSize);
 imageData = imfilter(imageData, h, 'replicate');

in my matlab code i apply averaging filter to an image.

I saw this article for openCV smoothing: http://docs.opencv.org/doc/tutorials/... since i need it to be bit accurate, can you suggest some smoothing function which is bit accurate to matlab?

edit retag flag offensive close merge delete