Skip to content
Snippets Groups Projects
Commit 137e5485 authored by Nicola Vigano's avatar Nicola Vigano
Browse files

Fixed bug in gtPostSegmentation

parent ca45d093
No related branches found
No related tags found
No related merge requests found
......@@ -368,7 +368,7 @@ function sfDoInsert(spot, difspot_table)
end
function writeDifspotToEDF(spot, index)
sub_dir = fullfile('2_difspot', sprintf('%05d', difID - mod(difID, 1e4)));
sub_dir = fullfile('2_difspot', sprintf('%05d', index - mod(index, 1e4)));
if (~exist(sub_dir, 'dir'))
[status, message, messageid] = mkdir(sub_dir);
if (~status)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment