Error using cd Cannot CD to /Users/mananmehta/Documents/MATLAB/dataset/1 (Name is nonexistent or not a directory). Error in load_database (line 12) cd(strcat('/Users/mananmehta/Documents/MATLAB/dataset/',num2str(i)));
1 回表示 (過去 30 日間)
古いコメントを表示
function out=load_database()
% We load the database the first time we run the program.
persistent loaded;
persistent w;
status=mkdir('/Users/mananmehta/Documents/MATLAB/dataset/stereo-pairs/cones');
disp(status);
if(isempty(loaded))
v=zeros(10304,400);
for i=1:40
cd(strcat('/Users/mananmehta/Documents/MATLAB/dataset/',num2str(i)));
for j=1:10
a=imread(strcat(num2str(j),'.png'));
v(:,(i-1)*10+j)=reshape(a,size(a,1)*size(a,2),1);
end
cd ..
end
w=uint8(v); % Convert to unsigned 8 bit numbers to save memory.
end
loaded=1; % Set 'loaded' to aviod loading the database again.
out=w;
回答 (1 件)
Jason Ross
2013 年 3 月 22 日
You are making a directory '/Users/mananmehta/Documents/MATLAB/dataset/stereo-pairs/cones' but then changing directory to '/Users/mananmehta/Documents/MATLAB/dataset/'.
Should you be changing directory to '/Users/mananmehta/Documents/MATLAB/dataset/stereo-pairs/cones'
If this is the case, I'd suggest putting the directory name in a variable and then using the variable in both places to avoid this kind of error.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で File Operations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!