How to retrieve image name
조회 수: 6 (최근 30일)
이전 댓글 표시
I have loaded an image having name '1.bmp' using GUI and stored it in the variable 'im'.Is there a way I can get the filename/image name? I want to do something like this
if ( name(im)='1.bmp')
statement1
elseif (name(im)='2.bmp')
statement2
else
statement 3
And so on? Please help me. I am a beginner. % code end
댓글 수: 0
답변 (2개)
Image Analyst
2017년 12월 8일
You need to save the filename string and be able to access it in other functions.
댓글 수: 0
John D'Errico
2017년 12월 8일
Having loaded an image into a variable, the original name of the image in the file it was stored in is NOT carried along.
Nothing stops you from retaining that name in a different variable. Or you might even decide to name the image variable in a way that was consistent with the filename, although you cannot name a variable with purely a number. So 1 is not a valid variable name, nor can you start the name of a variable with a number.
댓글 수: 3
Stephen23
2017년 12월 8일
편집: Stephen23
2017년 12월 8일
- Do not use path as a variable name, because this is the name of a very important inbuilt function.
- The first output of imgetfile is the full path: split this into the filename and pathname using fileparts.
- compare using strcmpi, not strcmp (unless you are using a case-sensitive OS).
참고 항목
카테고리
Help Center 및 File Exchange에서 Convert Image Type에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!