Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

i am executing the code below

1 Ansicht (letzte 30 Tage)
tina jain
tina jain am 14 Mär. 2015
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
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....')*

Antworten (1)

Image Analyst
Image Analyst am 14 Mär. 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 Kommentare
tina jain
tina jain am 14 Mär. 2015
should i convert that script into function?
tina jain
tina jain am 14 Mär. 2015
ok done.

Diese Frage ist geschlossen.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by