Is the a max size for conv2

1 vue (au cours des 30 derniers jours)
Thomas Hoyle
Thomas Hoyle le 27 Fév 2017
Commenté : Thomas Hoyle le 28 Fév 2017
Hi I'm having a problem with conv2 every time I try to use it matlab gets stuck in "busy" and I cant do anything. If I try to pause the script it just gets stuck in "pausing". I am using 2D matrices with sizes 3909x4000 double. Has anyone ecountered this problem or has a solution any help would be appreciated.
  2 commentaires
Jan
Jan le 27 Fév 2017
Please post the relevant part of the code. One input is [3909x4000] and the other?
Thomas Hoyle
Thomas Hoyle le 28 Fév 2017
This is the code I am using
PSF = deconvreg(output,input);
Pnz = deconvreg(output, PSF);
acc = conv2(Pnz, PSF);
The input, ouput, PSF and Pnz are all 3909x4000

Connectez-vous pour commenter.

Réponse acceptée

Guillaume
Guillaume le 27 Fév 2017
As discussed by Yair, matlab's convolution seem to be using the standard sliding window algorithm, which if you're using on two 3909x4000 is going to result in a great deal of operations (~2e14 sliding positions). As also discussed in that post, you can use the fact that the fourier transform of the convolution is the product of the Fourier Transforms of the inputs.
There's an implementation of it on the FileExchange .

Plus de réponses (0)

Catégories

En savoir plus sur Mathematics dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by