Borrar filtros
Borrar filtros

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

2 visualizaciones (últimos 30 días)
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 comentarios
Adam
Adam el 11 de Abr. de 2017
I'm not sure if a bug being improved is a good thing or a bad thing!
Shogo Muramatsu
Shogo Muramatsu el 11 de Abr. de 2017
Editada: Shogo Muramatsu el 11 de Abr. de 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.

Iniciar sesión para comentar.

Respuesta aceptada

Walter Roberson
Walter Roberson el 10 de Abr. de 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 comentarios
Shogo Muramatsu
Shogo Muramatsu el 11 de Abr. de 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.

Iniciar sesión para comentar.

Más respuestas (3)

Shogo Muramatsu
Shogo Muramatsu el 11 de Abr. de 2017
Editada: Shogo Muramatsu el 12 de Abr. de 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 el 6 de Jun. de 2017
Visit https://mathworks.com/support/bugreports/ and search #BugID: 1554862.

Prerana Paravastu
Prerana Paravastu el 20 de Nov. de 2017
Which is the recent version?

Categorías

Más información sobre Signal Processing Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by