maweigert / gputools

GPU accelerated image/volume processing in Python
BSD 3-Clause "New" or "Revised" License
108 stars 20 forks source link

fix sub_blocks argument for {min,max}_filter() #9

Closed colemanbroad closed 6 years ago

colemanbroad commented 6 years ago

Now this works...

x = np.random.rand(256,256,256)
x2 = gputools.min_filter(x, size=3, sub_blocks=(2,3,4))
maweigert commented 6 years ago

Merci!