Skip to content

Commit

Permalink
corrected small bug (ask to save SEgParameters.mat after myelin set i…
Browse files Browse the repository at this point in the history
…n GUI)
  • Loading branch information
Aldo Zaimi committed Mar 6, 2017
1 parent a65d507 commit 8bd8057
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions code/GUI/SegmentationGUI.m
Original file line number Diff line number Diff line change
Expand Up @@ -1417,6 +1417,19 @@ function MyelinSeg_Callback(hObject, eventdata, handles)

%% SAVE

% save SegParam
[FileName,PathName] = uiputfile('SegParameters.mat','Save Segmentation Parameters');

PixelSize=get(handles.PixelSize,'Value');
handles.segParam.PixelSize=PixelSize;
SegParameters=handles.segParam;




save([PathName FileName], 'SegParameters', 'PixelSize');


savedir=[handles.outputdir 'results_cropped' filesep];
mkdir(savedir);

Expand Down

0 comments on commit 8bd8057

Please sign in to comment.