Which Dct Algorithm is used ?
1 回表示 (過去 30 日間)
古いコメントを表示
Hello,
Can anyone tell me that which algo is used in this dct watermarking code or anyone who already used that code? Here is the link
Thanks in advance!
0 件のコメント
回答 (1 件)
Walter Roberson
2019 年 12 月 9 日
https://www.mathworks.com/help/images/ref/dct2.html#d117e44015 describes the Discrete Cosine Transfer
dct2 does dct(), transposes the array, and does dct() again.
dct() that is invoked is a private function, not the public dct from the signal processing toolbox. However, the two use the same internal structure; fft() and multiply by weights.
参考
カテゴリ
Help Center および File Exchange で Fourier Analysis and Filtering についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!