diff options
-rw-r--r-- | gui_win.m | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -327,7 +327,7 @@ if get(handles.button2loadimage,'Value') set(handles.button2start,'String','STOP'); drawnow; - img=chose_and_read_image_from_file(); + img=choose_and_read_image_from_file(); if ~any(isnan(img)) image_display=double(img); image_original=image_display; @@ -544,14 +544,14 @@ function read_background_from_file_Callback(hObject, eventdata, handles) % handles structure with handles and user data (see GUIDATA) global background_m; -img=chose_and_read_image_from_file(); +img=choose_and_read_image_from_file(); if ~any(isnan(img)) background_m = double(img); draw_backround_image(handles); end -function img=chose_and_read_image_from_file() +function img=choose_and_read_image_from_file() global pathname; global default_data_path; |