Skip to content

Commit 92076ef

Browse files
committed
Fixing issue with line 63 - which fails on MATLAB Online - the /s are unnecessary, and without them, it works both online and on desktop
1 parent 2d2d83f commit 92076ef

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

prepare2DImageDataset.m

+3-3
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@
6060
% normalizes 2D image sets, with skull-stripping and augmentation
6161
% optionally applied.
6262
exemplars = cell(3,1);
63-
exemplars{1} = prepare2DImageDataset_(brainVolumes_3to5,fullfile_(dstPath,'\Ages3-5\'),augmentDataset,applySkullStripping, skullMask_3to5);
64-
exemplars{2} = prepare2DImageDataset_(brainVolumes_7to12,fullfile_(dstPath,'\Ages7-12\'),augmentDataset,applySkullStripping, skullMask_7to12);
65-
exemplars{3} = prepare2DImageDataset_(brainVolumes_Adults,fullfile_(dstPath,'\Adults\'),augmentDataset,applySkullStripping, skullMask_Adults);
63+
exemplars{1} = prepare2DImageDataset_(brainVolumes_3to5,fullfile_(dstPath,'Ages3-5'),augmentDataset,applySkullStripping, skullMask_3to5);
64+
exemplars{2} = prepare2DImageDataset_(brainVolumes_7to12,fullfile_(dstPath,'Ages7-12'),augmentDataset,applySkullStripping, skullMask_7to12);
65+
exemplars{3} = prepare2DImageDataset_(brainVolumes_Adults,fullfile_(dstPath,'Adults'),augmentDataset,applySkullStripping, skullMask_Adults);
6666

6767

6868
end

0 commit comments

Comments
 (0)