Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions lib/+ne7/+ui/drawCells.m
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ case num2cell('1':'9')
else
removeOutlines
end
case 91
h=findobj(gcf,'type','image');
set(h,'cdata',get(h,'cdata')*.9)
case 93
h=findobj(gcf,'type','image');
set(h,'cdata',get(h,'cdata')*1.1)
case 27
yes = questdlg('Do you wish to abort segmenting this image?','Finish segmentation', 'yes','no','no');
if strcmpi('yes', yes)
Expand All @@ -66,6 +72,8 @@ case num2cell('1':'9')
disp 'Shift-click to delete pixels from mask'
disp 'Press BACKSPACE to undo'
disp 'Press 1-9 to set brush size'
disp '[ to reduce brightness'
disp '] to increase brightness'
disp 'Press SPACE to toggle outlines'
disp 'Press ESC to discard all edits'
disp 'Press ENTER to commit'
Expand Down