Unrecognized method, property, or field 'Labels' for class 'augmentedImageDatastore'.
15 views (last 30 days)
Show older comments
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 Comments
Answers (1)
Srivardhan Gadila
on 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 Comments
See Also
Categories
Find more on Deep Learning Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!