Info
Cette question est clôturée. Rouvrir pour modifier ou répondre.
i am executing the code below
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
upperLeft = dwt1_imData(1:r1, 1:c1); upperLeft; imshow(upperLeft,map);
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/147847/image.png)
now i want to apply dpcm on it. what will be the syntax. as i cant use * i=imread('upperLeft....')*
0 commentaires
Réponses (1)
Image Analyst
le 14 Mar 2015
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
Cette question est clôturée.
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!