You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My video size is 608x608x25977, and caiman will report the error in cnmf.py, 607.
That is may be caused by incorrect cell number in C and A (1011 vs 996)
then it will crash while calculating YrA = YA - AA.T.dot(Cin).T
The data before step self.update_spatial(Yr, use_init=False) is like this, with 1012 cells
In this part in spatial.py, after ff-nr , nr removed more rows (because here ff have minused nr), and it caused in step A_ = A_[:, :nr], cell number of A_ is smaller than C
then they will return an incorrect result
Maybe I should exchange the position of ff -= nr and nr = nr - len(ff[ff < nr]) ?
Thanks very much !
The text was updated successfully, but these errors were encountered:
My video size is 608x608x25977, and caiman will report the error in cnmf.py, 607.
That is may be caused by incorrect cell number in C and A (1011 vs 996)
then it will crash while calculating YrA = YA - AA.T.dot(Cin).T
The data before step self.update_spatial(Yr, use_init=False) is like this, with 1012 cells
In this part in spatial.py, after ff-nr , nr removed more rows (because here ff have minused nr), and it caused in step A_ = A_[:, :nr], cell number of A_ is smaller than C
then they will return an incorrect result
Maybe I should exchange the position of ff -= nr and nr = nr - len(ff[ff < nr]) ?
Thanks very much !
The text was updated successfully, but these errors were encountered: