필터 지우기
필터 지우기

plz tell me wat's the reason for this error in matlab..

조회 수: 1 (최근 30일)
supriya
supriya 2012년 4월 18일
??? Error using ==> getImageFromFile at 14 Cannot find the specified file: "ei"
Error in ==> imageDisplayParseInputs at 74 [common_args.CData,common_args.Map] = ...
Error in ==> imshow at 199 [common_args,specific_args] = ...
  댓글 수: 2
Andreas Goser
Andreas Goser 2012년 4월 18일
Can you post your code please?
supriya
supriya 2012년 4월 18일
i hv got it!!
The input to imshow() should not be a string..nd i was trying it this way..
ei = imerode(gi,se);
imshow(ei);

댓글을 달려면 로그인하십시오.

채택된 답변

Wayne King
Wayne King 2012년 4월 18일
The input to imshow() should not be a string
ei = imerode(gi,se);
imshow(ei);

추가 답변 (1개)

Wayne King
Wayne King 2012년 4월 18일
I think you should provide more information than this, like what specific MATLAB function call is throwing the error.
The root cause appears that the file "ei" cannot be found.
What is the name of the file you are trying to open and is the folder that file is in located on the MATLAB search path?
Use addpath or pathtool to add the folder
  댓글 수: 2
supriya
supriya 2012년 4월 18일
It's bcoz of this 1..
ei=imerode(gi,se);imshow('ei');
here gi is a grayscale image..
supriya
supriya 2012년 4월 18일
plzzz help....

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Environment and Settings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by