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.
  댓글 수: 3
tina jain
tina jain 2015년 3월 14일
should i convert that script into function?
tina jain
tina jain 2015년 3월 14일
ok done.

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by