필터 지우기
필터 지우기

I want to read all these images into my workspace. Path of all the images are in this csv file. i imported it into a table. how to read these images now. please do help.

조회 수: 2 (최근 30일)
  댓글 수: 2
Jan
Jan 2018년 6월 12일
As soon as you post the existing code, it is a little but easier to post a solution. This will be clearer than "i imported it into a table".
Karthik K
Karthik K 2018년 6월 12일
with only 2 lines i have imported these into matlab sir. uiopen('D:\MATLAB\MURA\train_image_path.csv',1); or d=importdata('D:\MATLAB\MURA\train_image_path.csv'); Next i needed to read images 1by1. below answer helped me. Thank u sir.

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

채택된 답변

KSSV
KSSV 2018년 6월 12일
YOu need not to import images into a file.....you could simply do:
images = dir('*.png') ;
N = length(images) ;
for i = 1:N
thisimage = images(i).name ;
I = imread(thisimage) ;
imshow(I) ;
end
If you want to pick it from csv:
[num,txt,raw] = xlsread('FileName.csv') ;
N = size(txt,1) ;
for i = 1:N
I = imread(txt{i}) ;
imshow(I) ;
end

추가 답변 (1개)

Jan
Jan 2018년 6월 12일
편집: Jan 2018년 6월 12일

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by