3
votes
2answers
327 views

What is a more efficient way to process numpy arrays based on multiple criteria?

I have written some code that for a range of years (eg. 15 years), ndimage.filters.convolveis used to convolve an array (eg. array1), then where the resulting array (eg. array2) is above a randomly ...
0
votes
0answers
546 views

How to process 3d gaussian convolution with a 3d array or matrix in OpenCV

I have a 3d array like this. int sz[] = {240, 240, 240}; Mat accumarray(3, sz, CV_32S, Scalar::all(0)) ; And I want to process a 3d gaussian convolution on this array to blur the array. To make ...
0
votes
2answers
313 views

Multi-dimensional array edge/border conditions

I'm iterating over a 3 dimensional array (which is an image with 3 values for each pixel) to apply a 3x3 filter to each pixel as follows: //For each value on the image for ...