Naming xls files corresponding to image in MATLAB

조회 수: 1 (최근 30일)
Muhammad Usman
Muhammad Usman 2014년 7월 6일
댓글: Image Analyst 2014년 7월 6일
I have number of images in a folder. I have read these images, I am generating sift features and descriptors of these images and writing these in xls files. the only problem here is that i want to name the respective xls file as the name of corresponding image

채택된 답변

Image Analyst
Image Analyst 2014년 7월 6일
Let's say your image name has a ".png" in the name, then do
excelFileName = strrep(imageFileName, '.png', 'xlsx');
  댓글 수: 2
Muhammad Usman
Muhammad Usman 2014년 7월 6일
i am using
dir('*.jpeg')
to get the images from directory,first i want to get the names of all the images then name the same to my excel files
Image Analyst
Image Analyst 2014년 7월 6일
No problem. Just modify it and it should work.
excelFileName = strrep(imageFileName, '.jpeg', 'xlsx');
This should solve your problem. If it does, mark the Answer as "Accepted" if it doesn't, show me your code.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Read, Write, and Modify Image에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by