Skip to content

Commit

Permalink
Estimate the noise after smoothing
Browse files Browse the repository at this point in the history
  • Loading branch information
XuelongMi committed May 8, 2020
1 parent 55cc4e1 commit dc16956
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,11 @@ Yizhi Wang, Nicole V. DelRosso, Trisha Vaidyanathan, Michael Reitman, Michelle K

# Updates

**5/8/2020:**

This update changes the estimated noise in step 1. Previous version estimated the noise before smoothing and used it to detect active regions, which is unreasonable since the detection is based on the smoothed data.
The current version estimates the noise after smoothing. With the accurate estimation, users can feel safe to set the intensity threshold as 2 or 3 instead of adjusting this parameter very hard.

**2/5/2020:**

The update solves the problem that AQuA cannot detect event in the first frame and end frame.
Expand Down
2 changes: 1 addition & 1 deletion src/+burst/actTop.m
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@

% noise and threshold, get active voxels
if isfield(opts,'legacyModeActRun') && opts.legacyModeActRun>0
opts.varEst = stdEstBef.^2;
opts.varEst = stdEst.^2;
% opts.varMap = stdMapGauBef.^2;
[arLst,dActVox] = burst.getAr(dF,opts,evtSpatialMask);
else
Expand Down

0 comments on commit dc16956

Please sign in to comment.