Which Dct Algorithm is used ?
이전 댓글 표시
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!
답변 (1개)
Walter Roberson
2019년 12월 9일
0 개 추천
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.
카테고리
도움말 센터 및 File Exchange에서 Image Transforms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!