svenpeter42 / fastfilters

Old academic project for my PhD - no longer maintained by me: fast gaussian and derivative convolutional filters
MIT License
9 stars 10 forks source link

(200, 200, 2) array makes 3d convolution segfault #14

Open svenpeter42 opened 7 years ago

svenpeter42 commented 7 years ago

just needs some sanity checking. test case adapted from #13

import fastfilters
import numpy as np

data = np.random.normal(size=(200, 200, 2))
data = fastfilters.hessianOfGaussianEigenvalues(data, window_size=3.5, scale=3.5)