Python equivalent of `wavedec3` from MATLAB

336 Views Asked by At

I am trying to implement a discrete wavelet transform (DWT) in 3D, and I have found the MATLAB equivalent, wavedec3. Does anyone know if there is a Python equivalent I can use rather than going ahead and writing my own?

1

There are 1 best solutions below

0
Amir Charkhi On BEST ANSWER

I used pywt the wavedecn(array, method, level) and it does what I wanted to do: perform discrete wavelet transform on a 3D array in multi-levels.