Changeset 753
- Timestamp:
- Apr 27, 2014, 8:17:47 PM (10 years ago)
- Location:
- trunk/src/transform_field
- Files:
-
- 2 added
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/transform_field/ima_filter.m
r730 r753 12 12 13 13 %------------------------------------- 14 function DataOut=ima_test(DataIn,Param) 15 if isequal(DataIn,'*') 14 function DataOut=ima_filter(DataIn,Param) 15 16 %% request input parameters 17 if isfield(DataIn,'Action') && isfield(DataIn.Action,'RUN') && isequal(DataIn.Action.RUN,0) 16 18 prompt = {'npx';'npy'}; 17 19 dlg_title = 'get the filter size in x and y'; -
trunk/src/transform_field/phys.m
r742 r753 28 28 DataOut=[]; 29 29 DataOut_1=[]; %default second output field 30 if strcmp(DataIn,'*')30 if isfield(DataIn,'Action') && isfield(DataIn.Action,'RUN') && isequal(DataIn.Action.RUN,0) 31 31 if isfield(XmlData,'GeometryCalib')&& isfield(XmlData.GeometryCalib,'CoordUnit') 32 32 DataOut.CoordUnit=XmlData.GeometryCalib.CoordUnit;% states that the output is in unit defined by GeometryCalib, then erased all projection objects with different units
Note: See TracChangeset
for help on using the changeset viewer.