Question about significancy of wavelet coefficients
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I'm doing watermarking project based on discrete wavelet transform. According to various research paper i understand that, the watermark should be embedded into highest wavelet coefficients. Now consider some wavelet coefficients: 12, -23 ,34 ,-123,56 Can anybody tell me which are the three highest coefficients?
Thanks in advance.
0 Commenti
Risposta accettata
the cyclist
il 20 Ago 2011
Does this do what you want?
coefficients = [12,-23,34,-123, 56];
sortedCoefficients = sort(coefficients,'descend');
topThree = sortedCoefficients(1:3)
If you need the three highest by magnitude (e.g. -123 is the largest), then it's just a bit trickier:
coefficients = [12,-23,34,-123, 56];
[sortedCoefficients,sortingIndex] = sort(abs(coefficients),'descend');
topThree = sign(coefficients(sortingIndex(1:3))).*sortedCoefficients(1:3)
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Wavelet Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!