Changeset 975
- Timestamp:
- Nov 23, 2016, 2:48:07 PM (8 years ago)
- Location:
- trunk/src
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/series.m
r973 r975 1583 1583 % extra_oar=''; 1584 1584 % else 1585 answer=inputdlg({'Number of cores (max 36)','extra oar options'},'oarsub parameter',1,{'1 2',''});1585 answer=inputdlg({'Number of cores (max 36)','extra oar options'},'oarsub parameter',1,{'16',''}); 1586 1586 if isempty(answer) 1587 1587 errormsg='Action launch interrupted by user'; … … 3669 3669 % --- Executes on button press in MonitorCluster. 3670 3670 function MonitorCluster_Callback(hObject, eventdata, handles) 3671 web('https://www.legi.grenoble-inp.fr/servload/monika') 3672 3673 3671 web('https://www.legi.grenoble-inp.fr/servfill/monika') 3674 3672 3675 3673 function OutputSubDir_Callback(hObject, eventdata, handles) -
trunk/src/series/extract_multitif_parallel.m
r972 r975 161 161 if Param.IndexRange.first_i==1% first slice of processing 162 162 firstindex=0; 163 count=0; 163 count=0; 164 % count=3; 164 165 else 165 166 firstindex=Param.IndexRange.first_i; 166 167 ImageName=fullfile(Param.InputTable{1,1},Param.InputTable{1,2},'im.tif'); 167 168 NbFrames=numel(imfinfo(ImageName)); 168 count=Param.IndexRange.first_i*NbFrames; 169 count=Param.IndexRange.first_i*NbFrames; 170 % count=Param.IndexRange.first_i*NbFrames+3; 169 171 end 170 172 for ifile=firstindex:Param.IndexRange.last_i -
trunk/src/series/merge_proj.m
r960 r975 296 296 end 297 297 % get the time defined in the current file if not already defined from the xml file 298 if ~isempty(time) && isfield(Data{iview},'Time')298 if isempty(time) && isfield(Data{iview},'Time') 299 299 timeread(iview)=Data{iview}.Time; 300 300 end -
trunk/src/uvmat.m
r972 r975 588 588 FigName=get(ListFig(ilist),'name'); 589 589 if isempty(FigName) 590 FigName=['figure ' num2str( ListFig(ilist))];590 FigName=['figure ' num2str(get(ListFig(ilist),'number'))]; 591 591 end 592 592 if ~strcmp(FigName,'uvmat') … … 1175 1175 % raw 6 of the GUI 1176 1176 uicontrol('Style','edit','Units','normalized', 'Position', [3*ii+2*ww 0.95-5*ii-4.2*hh ww hh],'tag','num_SliceAngle_1_1','BackgroundColor',[1 1 1],... 1177 'String',num2str(SliceAngle(1 )),'FontUnits','points','FontSize',12,'FontWeight','bold','TooltipString','''num_SliceAngle_1_1'':first slice angle of inclination around the x axis');%edit box1177 'String',num2str(SliceAngle(1,1)),'FontUnits','points','FontSize',12,'FontWeight','bold','TooltipString','''num_SliceAngle_1_1'':first slice angle of inclination around the x axis');%edit box 1178 1178 uicontrol('Style','edit','Units','normalized', 'Position', [4*ii+3*ww 0.95-5*ii-4.2*hh ww hh],'tag','num_SliceAngle_1_2','BackgroundColor',[1 1 1],... 1179 'String',num2str(SliceAngle( 1)),'FontUnits','points','FontSize',12,'FontWeight','bold','TooltipString','''num_SliceAngle_1_2'':last slice angle of inclination around the x axis');%edit box1179 'String',num2str(SliceAngle(end,1)),'FontUnits','points','FontSize',12,'FontWeight','bold','TooltipString','''num_SliceAngle_1_2'':last slice angle of inclination around the x axis');%edit box 1180 1180 uicontrol('Style','edit','Units','normalized', 'Position', [3*ii+2*ww 0.95-6*ii-5.2*hh ww hh],'tag','num_SliceAngle_2_1','BackgroundColor',[1 1 1],... 1181 'String',num2str(SliceAngle( 2)),'FontUnits','points','FontSize',12,'FontWeight','bold','TooltipString','''num_SliceAngle_2_1'':first slice angle of inclination around the y axis');%edit box1181 'String',num2str(SliceAngle(1,2)),'FontUnits','points','FontSize',12,'FontWeight','bold','TooltipString','''num_SliceAngle_2_1'':first slice angle of inclination around the y axis');%edit box 1182 1182 uicontrol('Style','edit','Units','normalized', 'Position', [4*ii+3*ww 0.95-6*ii-5.2*hh ww hh],'tag','num_SliceAngle_2_2','BackgroundColor',[1 1 1],... 1183 'String',num2str(SliceAngle( 2)),'FontUnits','points','FontSize',12,'FontWeight','bold','TooltipString','''num_SliceAngle_2_2'':last slice angle of inclination around the y axis');%edit box1183 'String',num2str(SliceAngle(end,2)),'FontUnits','points','FontSize',12,'FontWeight','bold','TooltipString','''num_SliceAngle_2_2'':last slice angle of inclination around the y axis');%edit box 1184 1184 1185 1185 % raw 7 of the GUI: pushbuttons
Note: See TracChangeset
for help on using the changeset viewer.