Problem with imageDatastore function
Show older comments
Hello everyone,
I found this tutorial one week ago about Image Category Classification Using Deep Learning http://www.mathworks.com/examples/matlab-computer-vision/mw/vision_product-DeepLearningImageClassificationExample-image-category-classification-using-deep-learning?s_eid=PSM_da
I have a problem with imageDatastore. When I define this function: imds = imageDatastore(fullfile(rootFolder, categories), 'LabelSource', 'foldernames'); matlab says, Undefined function or variable 'imageDatastore'. I tried to find from which toolbox the function comes from, but it seems like that function it doesn't exist at all. I hope someone here will be able to solve my problem. Thanks in advance
1 Comment
Talbi anis
on 6 May 2020
Edited: Talbi anis
on 6 May 2020
Hi everyone,
I'm using Matlab R2013a or Matlab R2015a, is there alternative to create an ImageDatastore object
Thank you for you help
Accepted Answer
More Answers (3)
Walter Roberson
on 21 May 2016
2 votes
imageDatastore requires the Computer Vision Toolbox from R2015b or later.
4 Comments
Aleksandar Trpkovski
on 21 May 2016
Walter Roberson
on 21 May 2016
I just remembered that I tracked this down once before. The imageDatastore function is new as of R2016a, but the imageDatastore class was new as of R2015b.
Borasy Kong
on 28 Nov 2017
Man, I should've read these follow up comments before wasting my time installing the R2015b to get this error again.
Mehreen Khan
on 21 Jan 2019
Try using datastore instead of imageDatastore. It worked or me on R2015b
imds = datastore(fullfile())
Mehreen Khan
on 21 Jan 2019
0 votes
Try using datastore instead of imageDatastore. It worked or me on R2015b
imds = datastore(fullfile());
Saher77
on 10 Apr 2019
0 votes
Hi everyone, Is there alternative to ImageDataStore in Matlab 2012. Any help appreciated
1 Comment
Walter Roberson
on 13 Apr 2020
No, none of the datastore objects existed in 2012. None of the Deep Learning functions existed in 2012 either -- just the Neural Network functions that did not use datastores. The File Exchange had some contributions related to learning algorithms that did not use datastore objects though.
Categories
Find more on Image Category Classification in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!