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.

此问题已关闭。

标签

Community Treasure Hunt

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

Start Hunting!

Translated by