It's magic. R2017a gives a different result from R2016a/b with the following simple code...

1 view (last 30 days)
R2017a gives a different result from R2016a/b with the following code:
I = magic(16); H = magic(4); imfilter(I,H,'circular')
Has the implementation of imfilter been changed?
It is a huge problem for me.
  4 Comments
Shogo Muramatsu
Shogo Muramatsu on 11 Apr 2017
Edited: Shogo Muramatsu on 11 Apr 2017
This bug is a fatal problem especially for researchers and developers concerning signal processing, and should be fixed immediately.
For a double precision input image, the circular extension may fail when using an even size kernel. Please also see the answer made by myself.
Circular convolution is a special operator because
  • It is diagonalized by the discrete Fourier transform(DFT), i.e., FFT.
  • The adjoint operator is also circular convolution with flipped kernel, i.e., circular correlation.
This bug is an obstacle to using these properties on MATLAB.

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 10 Apr 2017
Yes, the implementation did change; I do not see any release notes saying so, though.
I see in R2016b that non-separable filters have two branches: filterSingle2DWithConv() for single(), and filterPartOrWhole() for everything else. filterPartOrWhole() calls mex routines to do the work. You are using double(), so you would get the "everything else" mex routines.
I see in R2017a that non-separable filters have three branches: filterDouble2DWithConv() for double() for 2D arrays; filterDouble2DWithConv() (same routine) for double() with 3D arrays; and filterPartOrWhole() otherwise. (Notice filterSingle2DWithConv is gone and handled by filterPartOrWhole() now.) You are using double(), so you get the new filterDouble2DWithConv() routine. It calls upon conv2() to do the work.
I think you would be justified in filing a bug report on this.
  4 Comments
Shogo Muramatsu
Shogo Muramatsu on 11 Apr 2017
I've confirmed that the single precision routine gives the correct result by the following code:
% Input 2D array
I = magic(16);
% Filter kernel
H = magic(4);
% Circular convolution with double precision
ansimfd = imfilter(double(I),H,'conv','circular');
% Circular convolution with single precision
ansimfs = imfilter(single(I),H,'conv','circular');
% Frequency domain filtering
Iw = fft2(I,16,16);
Hw = fft2(H,16,16);
ansfft2 = circshift(ifft2(Iw.*Hw,16,16),-[2 2]);
% Evaluation of double precision filtering
norm(ansimfd-ansfft2)
% Evaluation of single precision filtering
norm(ansimfs-ansfft2)
Casting the input array to single precision would be a way to avoid the malfunction for the double precision data.

Sign in to comment.

More Answers (3)

Shogo Muramatsu
Shogo Muramatsu on 11 Apr 2017
Edited: Shogo Muramatsu on 12 Apr 2017
From line 450 to line 451 in imfilter.m, we can see the following codes:
a = padarray_algo(a, prePadSize, method, padVal, 'pre');
a = padarray_algo(a, padSize, method, padVal, 'post');
These two lines seem to periodically expand the image boundary. In this second line, it seems that the periodicity is collapsing as a result of postpadding by duplicating the result of prepadding.

Shogo Muramatsu
Shogo Muramatsu on 6 Jun 2017
Visit https://mathworks.com/support/bugreports/ and search #BugID: 1554862.

Prerana Paravastu
Prerana Paravastu on 20 Nov 2017
Which is the recent version?

Categories

Find more on Signal Processing Toolbox in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!