How to display c matrix shown below?

>> I = imread('baboon.tiff'); %input image of size 512*512*3
E1 = encode(I);% this function will return 262144*8
t = wpdec2(E1,2,'db4');% apply wpdec2
cfs = wpcoef(t);% extract coefficients
c = reshape(cfs, 512, 512, 8);% reshaping it back to get E1
% now we wish to display c

回答 (1 件)

KSSV
KSSV 2018 年 9 月 18 日

0 投票

Simply typing c will display on the workspace.....but what's the use? Read about imagesc, imshow, pcolor.

カテゴリ

ヘルプ センター および File ExchangeData Type Conversion についてさらに検索

タグ

質問済み:

2018 年 9 月 18 日

回答済み:

2018 年 9 月 18 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by