Skip to content

Commit

Permalink
fix bug in rho buffer
Browse files Browse the repository at this point in the history
  • Loading branch information
agiovann committed Nov 27, 2018
1 parent 31dbab2 commit 75636ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion caiman/source_extraction/cnmf/online_cnmf.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def fit_next(self, t, frame_in, num_iters_hals=3):
rho = np.reshape(rho, np.prod(self.params.get('data', 'dims')))
self.estimates.rho_buf.append(rho)

(self.estimates.Ab, Cf_temp, self.estimates.Yres_buf, self.rhos_buf,
(self.estimates.Ab, Cf_temp, self.estimates.Yres_buf, self.estimates.rho_buf,
self.estimates.CC, self.estimates.CY, self.ind_A, self.estimates.sv,
self.estimates.groups, self.estimates.ind_new, self.ind_new_all,
self.estimates.sv, self.cnn_pos) = update_num_components(
Expand Down

0 comments on commit 75636ef

Please sign in to comment.