Changeset 1089
- Timestamp:
- Jan 19, 2021, 9:57:06 AM (4 years ago)
- Location:
- trunk/src
- Files:
-
- 2 added
- 2 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/check_files.m
r1071 r1089 41 41 'cell2tab';... %transform a Matlab cell in a character array suitable for display in a table 42 42 'check_files';... 43 'civ';... %function associated with the interface 'civ.fig' for PIV and spline interpolation (to be replaced by civ_series)44 'civ.fig';...45 'civ_3D';... % function associated with the interface 'civ_3D.fig' for PIV in volume (TODO: combine with civ.m)46 'civ_3D.fig';...47 43 'compile';...% compile a Matlab function, create a binary in a subdirectory /bin 48 44 'copyfields';...% copy fields between two matlab structures -
trunk/src/get_file_info.m
r1088 r1089 7 7 % .FileType: type of file, needed as input of read_field.m 8 8 % ='figure': Matlab figure 9 % ='mat': Matlab data file 9 10 % ='xml': xml file 10 11 % ='xls': Excel file … … 191 192 end 192 193 193 if ismember (FileInfo.FileType,{' image','image_DaVis','multimage','mmreader','cine_phantom','video','netcdf','civdata'})194 if ismember (FileInfo.FileType,{'mat','image','image_DaVis','multimage','mmreader','cine_phantom','video','netcdf','civdata'}) 194 195 FileInfo.FileIndexing='on'; % allow to detect file index for scanning series 195 196 else -
trunk/src/series/civ_series.m
r1071 r1089 54 54 addpath(fullfile(path_series,'series')) 55 55 Data=civ_input(Param);% introduce the civ parameters using the GUI civ_input 56 %Data=civ_input_App(Param);% introduce the civ parameters using the GUI civ_input 56 57 if isempty(Data) 57 58 Data=Param;% if civ_input has been cancelled, keep previous parameters -
trunk/src/series/ima2vol.m
r1071 r1089 137 137 end 138 138 VolData.A(jfile,:,:)=Data.A;%concacene along y 139 VolData.Coord_z(jfile)= Data.PlaneCoord(3);139 VolData.Coord_z(jfile)=XmlData{1}.GeometryCalib.SliceCoord(jfile,3); 140 140 end 141 141 % npx=size(Data.A,2);
Note: See TracChangeset
for help on using the changeset viewer.