Skip to content

Instantly share code, notes, and snippets.

@AdriC1705
Created May 29, 2013 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AdriC1705/5670605 to your computer and use it in GitHub Desktop.
Save AdriC1705/5670605 to your computer and use it in GitHub Desktop.
def coeficientes(matrix):#Obtener los coefficientes 2D
coeffs=pywt.dwt2(matrix,'haar')
cA,(cH,cV,cD)=coeffs#cA=approximacion,cH=Detalle horizontal,cV=Detalle vertical,cD=Detalle diagonal
return (cA,cH,cV,cD),coeffs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment