Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

i am executing the code below

1 visualización (últimos 30 días)
tina jain
tina jain el 14 de Mzo. de 2015
Cerrada: MATLAB Answer Bot el 20 de Ag. de 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....')*

Respuestas (1)

Image Analyst
Image Analyst el 14 de Mzo. de 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 comentarios
tina jain
tina jain el 14 de Mzo. de 2015
should i convert that script into function?
tina jain
tina jain el 14 de Mzo. de 2015
ok done.

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by