pythonmatlabimage-processingdwt

Python equivalent of `wavedec3` from MATLAB


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?


Solution

  • 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.