Augmented Image Datastore doesn't accept Image Datastore

1 Ansicht (letzte 30 Tage)
Greg
Greg am 18 Mär. 2018
Kommentiert: Dnon Dnon am 26 Mär. 2018
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

dhammo2
dhammo2 am 20 Mär. 2018
I think that is only possible in 2018a as I have no problem in the 2018 version but it does not work in 2017b. You should be able to use the following function instead (which is to be removed in future versions);
augimds = augmentedImageSource(imageSize,imds);
https://uk.mathworks.com/help/nnet/ref/augmentedimagesource.html

Weitere Antworten (1)

Walter Roberson
Walter Roberson am 18 Mär. 2018
You tagged with Computer Vision product but it is part of the Neural Network product.
  4 Kommentare
Walter Roberson
Walter Roberson am 20 Mär. 2018
I suspect you do not have the Neural Network Toolbox installed.
Greg
Greg am 21 Mär. 2018
Bearbeitet: Greg am 21 Mär. 2018
hi Walter, I have had all toolboxes including neural nets and have been using it. This was the problem of 2017 version. thanks anyway for kindly replying Greg

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Deep Learning Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by