码迷,mamicode.com
首页 > 其他好文 > 详细

imageDatastore 图像数据的数据存储

时间:2020-02-02 23:54:40      阅读:424      评论:0      收藏:0      [点我收藏+]

标签:dataset   rip   拼接   标签   detail   tla   html   des   label   

imds = imageDatastore(location) 根据 location 指定的图像数据集合创建一个数据存储 imds

imds = imageDatastore(location,Name,Value) 使用一个或多个名称-值对组参数为 imds 指定其他参数和属性。

 

例:digitDatasetPath = fullfile(‘F:\dachuang\语料库‘, ‘0-9Pictrues‘);        %fullfile():  将地址拼接  digitDatasetPath = ‘F:\dachuang\语料库\0-9Pictrues‘
       imds = imageDatastore(digitDatasetPath,‘IncludeSubfolders‘,true,‘LabelSource‘,‘foldernames‘);

 

 

 

技术图片

 

 

digitDatasetPath:  数据所在位置

‘IncludeSubfolders‘,true: 是否包含子文件夹:是   (默认为否)

‘LabelSource‘,‘foldernames‘ : 标签来源:子文件夹名 (只有这个或者无标签)

 

 

官方文档:https://ww2.mathworks.cn/help/matlab/ref/matlab.io.datastore.imagedatastore.html

参考博客:https://blog.csdn.net/wanzi1122/article/details/80491937

 

imageDatastore 图像数据的数据存储

标签:dataset   rip   拼接   标签   detail   tla   html   des   label   

原文地址:https://www.cnblogs.com/yuren1998/p/12253977.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!