Classifying images using Machine Learning or Deep Learning?

5 views (last 30 days)
I am pretty new to image processing and machine learning. Currently, I am doing a school project where I have to classify images in: bottle of water or can of soda. The idea is to train a model with different brands of bottles of water and cans of soda. Then, if one of those brands appear, classify the image in one of the two categories. Is this possible using the Matlab machine learning toolbox or the deep learning one? Any suggestion?

Accepted Answer

mizuki
mizuki on 14 Feb 2017
Edited: mizuki on 14 Feb 2017
First try the general machine learning algorithms to classify such as Support Vector Machines. The following example would be similar to what you want to do:
If you are not satisfied with your classification results, and you have a lot of image data, consider to use Deep Learning. The easiest way to get started is to use the pre-trained model such as alexnet:
If you want to use more complex ones, see the examples in the documentation first.
  1 Comment
Qazi  Arbab Ahmed
Qazi Arbab Ahmed on 21 Feb 2017
I have Trained my model using Statistical App. I am using 4 features Finally to train my Model. Now I have a test Data set that I have read, How can I test using my Trained model. I have exported my model into workspace but when I do test my Images it gives the following erroe.
yfit = trainedClassifier.predictFcn(I2) Error using array2table (line 28) X must be a 2-D matrix.
Error in mlearnapp.internal.model.DatasetSpecification>@(x)array2table(x,'VariableNames',this.PredictorNames)
Error in mlearnapp.internal.model.DatasetSpecification>@(x)exportableClassifier.predictFcn(predictorExtractionFcn(x)) (line 138) newExportableClassifier.predictFcn = @(x) exportableClassifier.predictFcn(predictorExtractionFcn(x));

Sign in to comment.

More Answers (1)

Khaoula Riahi
Khaoula Riahi on 18 Mar 2019
how to install machine learning in Matlab version 2013?

Community Treasure Hunt

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

Start Hunting!