what does this lines mean?
显示 更早的评论
repo = '/media/data/images/';
filelist = dir([repo '*.jpg']);
sift_descr = {}
回答(1 个)
Walter Roberson
2018-4-16
filelist will become a struct vector, in which every entry describes a '.jpg' file found in /media/data/images/ . filelist will not be the list of files: it will information about the files. The names are in the .name field of the struct,
filenames = {filelist.name};
Note that the filenames extracted this way will not contain the directory information.
After that is done, the variable sift_descr is initialized to become an empty cell array. This step does not depend upon the previous two lines.
类别
在 帮助中心 和 File Exchange 中查找有关 Image Arithmetic 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!