Changeset 665 for trunk/src/series
- Timestamp:
- Jul 11, 2013, 11:57:23 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/series/civ_input.m
r661 r665 61 61 % relevant data in gcbf:.FileType,.FileInfo,.Time,.TimeUnit,.GeometryCalib{1}; 62 62 63 %% set visibility options: case civ_matlab63 %% set visibility options: 64 64 if strcmp(Param.Action.ActionName,'civ_series') 65 65 set(handles.Program,'String','civ_series') … … 155 155 set(handles.ListPairCiv2,'Value',1) 156 156 set(handles.ListPairCiv2,'String',{''}) 157 fill_GUI(Param ,hObject);%fill the GUI with the parameters retrieved from the input Param157 fill_GUI(Param.ActionInput,hObject);%fill the GUI with the parameters retrieved from the input Param 158 158 159 159 … … 1577 1577 filegrid=''; 1578 1578 if value 1579 filebase=get(handles.RootPath,'String'); 1579 hseries=findobj(allchild(0),'Tag','series'); 1580 hhseries=guidata(hseries); 1581 InputTable=get(hhseries.InputTable,'Data'); 1582 ind_A=1;% line index of the (first) image series 1583 if strcmp(InputTable{1,5},'.nc'); 1584 ind_A=2; 1585 end 1586 filebase=InputTable{ind_A,1}; 1580 1587 [nbslice, flag_grid]=get_grid(filebase,handles);% look for a grid with appropriate name 1581 1588 if isequal(flag_grid,1) … … 1587 1594 filebase=filegrid; 1588 1595 end 1589 [FileName, PathName] = uigetfile( ... 1590 {'*.grid', ' (*.grid)'; 1591 '*.grid', '.grid files '; ... 1592 '*.*', 'All Files (*.*)'}, ... 1593 'Pick a file',filebase); 1594 filegrid=fullfile(PathName,FileName); 1596 filegrid = uigetfile_uvmat('pick a grid file .grid:',filebase,'.grid'); 1595 1597 set(hObject,'UserData',filegrid);%store for future use 1596 if ~ (isempty(FileName)||isempty(PathName)||isequal(FileName,0)||~exist(filegrid,'file'))1598 if ~isempty(filegrid) 1597 1599 testgrid=1; 1598 end 1600 end 1601 set(hObject,'UserData',filegrid);%store for future use 1599 1602 end 1600 1603 end … … 1646 1649 hchildren=get(hparent,'children'); 1647 1650 handle_txtbox=findobj(hchildren,'tag','Mask');% look for the mask name box in the same panel 1651 1648 1652 testmask=0; 1649 1653 if value 1650 filebase=get(handles.RootPath,'String'); 1651 [nbslice, flag_mask]=get_mask(filebase,handles);% look for a mask with appropriate name 1654 hseries=findobj(allchild(0),'Tag','series'); 1655 hhseries=guidata(hseries); 1656 InputTable=get(hhseries.InputTable,'Data'); 1657 ind_A=1;% line index of the (first) image series 1658 if strcmp(InputTable{1,5},'.nc'); 1659 ind_A=2; 1660 end 1661 [nbslice, flag_mask]=get_mask(InputTable{ind_A,1},handles);% look for a mask with appropriate name 1652 1662 if isequal(flag_mask,1) 1653 1663 filemask=[num2str(nbslice) 'mask']; … … 1658 1668 filebase=filemask; 1659 1669 end 1660 [FileName, PathName] = uigetfile( ... 1661 {'*.png', ' (*.png)'; 1662 '*.png', '.png files '; ... 1663 '*.*', 'All Files (*.*)'}, ... 1664 'Pick a mask file *.png',filebase); 1665 filemask=fullfile(PathName,FileName); 1670 filemask= uigetfile_uvmat('pick a mask image file:',InputTable{ind_A,1},'image'); 1666 1671 set(hObject,'UserData',filemask);%store for future use 1667 if ~ (isempty(FileName)||isempty(PathName)||isequal(FileName,0)||~exist(filemask,'file'))1672 if ~isempty(filemask) 1668 1673 testmask=1; 1669 1674 end
Note: See TracChangeset
for help on using the changeset viewer.