我在MATLAB中经历了深度学习的教程。我试图执行以下代码
rootFolder = 'E:/Data Science and Machine Learning Stuff/DataSets/scene_categories';
categories = {'bedroom' , 'CALsuburb' , 'industrial' , 'kitchen' , 'livingroom','PARoffice','store'};
imds = imageDatastore(fullfile(rootFolder, categories),'LabelSource', 'foldernames');
tbl = countEachLabel(imds)
执行上述代码会产生以下错误:
Undefined function or variable 'imageDatastore'.
在对错误进行了大量研究之后,我终于知道函数imageDatastore
是在 R2015b 中引入的。
我目前的MATLAB版本是 R2015a ,因此我无法访问此功能。我也试过了这个版本中存在的datastore
函数(R2015a),但没有运气。
任何人都可以帮助编写imageDatastore
函数的替代代码,该代码执行与imageDatastore
相同的功能;或者可以告诉我如何使用datastore
函数执行此任务。