Unrecognized method, property, or field 'Labels' for class 'augmentedImageDatastore'.
15 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I am writing a CNN classification code, and I used an augmented Image Datastore for resizing my database. Now when I try to extract the labels from the datastore using this line:
YValidation = imdsValidation.Labels;
I get the following error: Unrecognized method, property, or field 'Labels' for class 'augmentedImageDatastore'.
I opened the augmented datastore and I could not find the labels. Any idea how I can get them to finalize my results?
Thank you in advance!
0 Kommentare
Antworten (1)
Srivardhan Gadila
am 15 Nov. 2021
Only imageDatastore has the property Labels whereas augmentedImageDatastore does not have it. You can refer to the following documentation pages: imageDatastore Properties & augmentedImageDatastore Properties for more information.
If you have created an augmentedImageDatastore using an imageDatastore and you have only used the resize functionality, then you can get the label data by accessing the Labels property of imageDatastore.
0 Kommentare
Siehe auch
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!