Augmented Image Datastore doesn't accept Image Datastore
Ältere Kommentare anzeigen
I have been using imageDatastore for training networks. All works fine.
Next, I wanted to create augmentedImageDatastore.
The documentation explains that imageDatastore can be used. https://uk.mathworks.com/help/nnet/ref/augmentedimagedatastore.html
however when try to do it, I receive this error
Undefined function 'augmentedImageDatastore' for input arguments of type 'matlab.io.datastore.ImageDatastore'
% all my images are 50x50x3
imageSize = [50 50 3];
augimds = augmentedImageDatastore(imageSize,imds);
I think this maybe something with the ReadFcn but it is default: @readDatastoreImage Is this possible to use imageDatastore, how if yes? I am using Matlab 2017b Thanks
Akzeptierte Antwort
Weitere Antworten (1)
Walter Roberson
am 18 Mär. 2018
0 Stimmen
You tagged with Computer Vision product but it is part of the Neural Network product.
4 Kommentare
Greg
am 18 Mär. 2018
Image Analyst
am 18 Mär. 2018
Bearbeitet: Image Analyst
am 18 Mär. 2018
imageDatastore() is in the Computer Vision System Toolbox. Maybe it's included in both toolboxes. I'm adding the Deep Learning toolbox to the Product List. The Neural Network toolbox is gone from the list right now. It was gone before and replaced by Deep Learning, but then they put it back, but now it's gone again replaced by the Deep Learning Toolbox again. I think there is some kind of gradual, on-again-off-again attempt at the Mathworks to rename the Neural Network Toolbox as "Deep Learning Toolbox".
Walter Roberson
am 20 Mär. 2018
I suspect you do not have the Neural Network Toolbox installed.
Kategorien
Mehr zu Deep Learning Toolbox finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!