- Timestamp:
- Jan 15, 2021, 11:23:55 PM (4 years ago)
- Location:
- trunk/src
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/get_file_info.m
r1071 r1088 69 69 case '.fig' 70 70 FileInfo.FileType='figure'; 71 case '.mat' 72 FileInfo.FileType='mat'; 71 73 case {'.xml','.xls','.dat','.bin'} 72 74 FileInfo.FileType=regexprep(FileExt,'^.','');% eliminate the dot of the extension; -
trunk/src/read_field.m
r1071 r1088 239 239 Field.VarAttribute=[Field.VarAttribute(1:NbCoord) VarAttribute]; 240 240 end 241 241 case 'mat' 242 Field=load(FileName); 242 243 case 'video' 243 244 if strcmp(class(ParamIn),'VideoReader') -
trunk/src/transform_field/ima_find_particles.m
r1071 r1088 48 48 Mask(:,1:SizePart)=0; 49 49 Mask(:,end-SizePart:end)=0; 50 [Js,Is]=find(A<AbsThreshold & abs(double(DataIn.A(:,:,1))-double(DataIn.A(:,:,3)))<20 &Mask==1);%indices (I,J) of dark pixels50 [Js,Is]=find(A<AbsThreshold & Mask==1);%indices (I,J) of dark pixels 51 51 X=zeros(size(Is)); 52 52 Y=zeros(size(Js)); -
trunk/src/uvmat.m
r1086 r1088 2175 2175 editxml(fileinput); 2176 2176 return 2177 case 'mat'% matlab data file 2178 global Data_uvmat 2179 Data_uvmat.Field=load(fileinput); 2180 evalin('base','global Data_uvmat')%make CurData global in the workspace 2181 disp('Data_uvmat.Field=') 2182 evalin('base','Data_uvmat.Field') %display CurData in the workspace 2183 commandwindow; %brings the Matlab command window to the front 2184 return 2177 2185 otherwise 2178 2186 set(handles_RootPath,'String',RootPath);
Note: See TracChangeset
for help on using the changeset viewer.