How to obtain the "convolved data" array? #129
-
I want to check the numpy array of "convolved data" which is derived by |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
There isn't a way to obtain the convolved data array, because it is calculated "on the fly" one line at a time: the entire array is not stored in memory at any point. However, it should be the same as what you would get using |
Beta Was this translation helpful? Give feedback.
-
It's normalized by the sum of the array, so that the normalized kernel sums to 1. The normalization is done in these lines. |
Beta Was this translation helpful? Give feedback.
There isn't a way to obtain the convolved data array, because it is calculated "on the fly" one line at a time: the entire array is not stored in memory at any point. However, it should be the same as what you would get using
scipy.signal.convolve(data, filter_kernel, mode="same")
. (It may differ near the image boundaries a bit, not entirely sure).