dct (8*8)
조회 수: 4 (최근 30일)
이전 댓글 표시
how to calculate Block-base DCT of an image ....
댓글 수: 0
채택된 답변
Wayne King
2011년 10월 14일
If you have the Image Processing Toolbox.
X = randn(100,100);
fun = @(block_struct) dct2(block_struct.data);
Y = blockproc(X,[8 8],fun);
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Filtering and Enhancement에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!