Skip to content

Commit 373c5bf

Browse files
authored
Merge pull request #19 from joeljonsson/develop_joel
Develop joel
2 parents f76fc41 + 97624d2 commit 373c5bf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyapr/numerics/filter/stencils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ def get_gaussian_stencil(size, sigma, ndims=3, normalize=False):
2222
for j in range(size):
2323
stenc[i, j] = vals[i] * vals[j]
2424

25-
stenc = np.expand_dims(stenc, axis=2)
25+
stenc = np.expand_dims(stenc, axis=0)
2626

2727
return stenc

0 commit comments

Comments
 (0)