ambiguity in location of path
Show older comments
Hi ,
This is so weird. Here is the code.
f2=fullfile(f1,'COScell1','Input');
f2w=fullfile(f1,'COScell1','Output-32','Segmentation_Check');
% File path for Colored folders
fg=fullfile(f2w,'Green');
fg_centroid=fullfile(fg,'GreenCentroid');
fg_centroidCorrected=fullfile(fg,'Green_CentroidCorrected');
There is another folder called Segmentation which contains similar folders. After I run the program if I type fg_centroid , this is what I get
COScell1\Output-32\Segmentation\Green\GreenCentroid ..
hence the images I write get written in the Segmentation folder and not Segmentation_Check folder. Please help me out. Thanks in advance.
3 Comments
Fangjun Jiang
on 15 Sep 2011
format your code please!
Mahalakshmi
on 15 Sep 2011
Walter Roberson
on 15 Sep 2011
Which MATLAB version are you using?
As a cross-check I would put in a breakpoint and check each step from the fg= onward -- e.g., checking that fg did not somehow change.
Also,
which -all fullfile
on the off-chance that you have your own fullfile function.
Accepted Answer
More Answers (1)
Fangjun Jiang
on 15 Sep 2011
0 votes
Double-check. I got it right, assume f1='';
>> fg_centroid
fg_centroid =
COScell1\Output-32\Segmentation_Check\Green\GreenCentroid
Categories
Find more on Entering Commands 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!