Changeset 557 for trunk/src/transform_field/remove_background.m
- Timestamp:
- Oct 19, 2012, 5:26:57 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/transform_field/remove_background.m
r40 r557 1 function DataOut=remove_ particles(DataIn,Calib)1 function DataOut=remove_background(DataIn) 2 2 %----------------------------------------------- 3 %% set GUI config: no action defined 4 DataOut=[]; %default output field 5 if strcmp(DataIn,'*') 6 return 7 end 8 3 9 %parameters 4 10 threshold=200 … … 9 15 10 16 %BACKGROUND LEVEL 11 Atype=class(DataIn.A) 17 Atype=class(DataIn.A); 12 18 A=double(DataIn.A); 13 19 Backg=zeros(size(A));
Note: See TracChangeset
for help on using the changeset viewer.