필터 지우기
필터 지우기

1000 color jpg images classification with labels

조회 수: 1 (최근 30일)
Jerone
Jerone 2014년 4월 7일
편집: Image Analyst 2014년 4월 8일
I have 1000 color jpg images called train_image_#.jpg where # = 1:1000
I want to load them then with labels '1' for my training set (which consists of only one class: labelled 1)
can anyone help me with this. thanks!

답변 (1개)

Image Analyst
Image Analyst 2014년 4월 7일
  댓글 수: 8
Jerone
Jerone 2014년 4월 8일
(Note: I haven't tried what you just suggested, but I will do a bit later.)
However, just to further clarify using a similar example- See this Kaggle competition http://www.kaggle.com/c/cifar-10 (CIFAR-10 - Object Recognition in Images):
There are thousands of images in the training set, and you are also given a .csv file with two columns: the first column is the name of the image, and the second column is the class that the image belongs to.
So, if i created a .csv file with the name of my images (first column) and the class of the images (second column), how do I go about loading this in matlab?
Image Analyst
Image Analyst 2014년 4월 8일
편집: Image Analyst 2014년 4월 8일
You can use readtable() (if you have R2014a version). You can't use csvread() - it won't work since both columns aren't numbers, so you should use readtable() which can handle columns of different types. If you have an old version of MATLAB, use textscan() or fgetl() along with sscanf().

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

Community Treasure Hunt

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

Start Hunting!

Translated by