Info

この質問は閉じられています。 編集または回答するには再度開いてください。

i am executing the code below

1 回表示 (過去 30 日間)
tina jain
tina jain 2015 年 3 月 14 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
upperLeft = dwt1_imData(1:r1, 1:c1); upperLeft; imshow(upperLeft,map);
now i want to apply dpcm on it. what will be the syntax. as i cant use * i=imread('upperLeft....')*

回答 (1 件)

Image Analyst
Image Analyst 2015 年 3 月 14 日
I don't know what dpcm is, but if it's a function, pass in the upperLeft array that you created to that function:
results = dpcm(upperLeft);
Don't put quotes around it to turn it into a string, just pass in the numerical variable itself like I did.
  3 件のコメント
tina jain
tina jain 2015 年 3 月 14 日
should i convert that script into function?
tina jain
tina jain 2015 年 3 月 14 日
ok done.

この質問は閉じられています。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by