i am executing the code below

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....')*

Réponses (1)

Image Analyst
Image Analyst le 14 Mar 2015

0 votes

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 commentaires

tina jain
tina jain le 14 Mar 2015
dpcm is a matlab script
tina jain
tina jain le 14 Mar 2015
should i convert that script into function?
tina jain
tina jain le 14 Mar 2015
ok done.

Cette question est clôturée.

Tags

Question posée :

le 14 Mar 2015

Clôturé :

le 20 Août 2021

Community Treasure Hunt

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

Start Hunting!

Translated by