Changeset 61 for trunk/src/imadoc2struct.m
- Timestamp:
- Mar 24, 2010, 12:51:51 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/imadoc2struct.m
r60 r61 64 64 end 65 65 s.Heading.ImageName=get(t,children(t,uid_FirstImage),'value'); 66 % FirstImage=s.Heading.ImageName;67 % if ~isempty(FirstImage)68 % [Pathsub,RootFile,field_count,str2,str_a,str_b,ext,nom_type_ima]=name2display(FirstImage);69 % end70 66 end 71 67 … … 78 74 xindex=findstr(ImageSize,'x'); 79 75 if length(xindex)>=2 80 % npx=str2num(ImageSize(1:xindex(1)-1)); 81 % npy=str2num(ImageSize(xindex(1)+1:xindex(2)-1)); 82 end 83 end 84 % uid_NbSlice=find(t,'/ImaDoc/Camera/NbSlice'); 85 % if ~isempty(uid_NbSlice) 86 % NbSlice=str2num(get(t,children(t,uid_NbSlice),'value')); 87 % % if isempty(NbSlice),NbSlice=1;end; %default 88 % end 76 npx=str2double(ImageSize(1:xindex(1)-1)); 77 npy=str2double(ImageSize(xindex(1)+1:xindex(2)-1)); 78 end 79 end 89 80 uid_TimeUnit=find(t,'/ImaDoc/Camera/TimeUnit'); 90 81 if ~isempty(uid_TimeUnit) … … 94 85 if ~isempty(uid_BurstTiming) 95 86 for k=1:length(uid_BurstTiming) 96 % Dtj=[];%default97 % NbDtj=1;%default98 87 subt=branch(t,uid_BurstTiming(k));%subtree under BurstTiming 99 88 % reading Dtk
Note: See TracChangeset
for help on using the changeset viewer.