Skip to content
Prev Previous commit
Next Next commit
…microscopy into tilereg
  • Loading branch information
barentine committed Mar 22, 2021
commit 79e256695774be51fde170d21bcd53efc6e43269
3 changes: 1 addition & 2 deletions PYME/Analysis/points/multiview.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@

import numpy as np
from PYME.Analysis.points.DeClump import deClump

def load_shiftmap(uri):
"""
Expand Down Expand Up @@ -283,7 +282,7 @@ def pair_molecules(t_index, x0, y0, which_chan, delta_x=[None], appear_in=np.ara
if not delta_x[0]:
delta_x = 100.*np.ones_like(x)
# group localizations
assigned = deClump.findClumps(t_index.astype(np.int32), x, y, delta_x, n_frame_sep)
assigned = findClumps(t_index.astype(np.int32), x, y, delta_x, n_frame_sep)
# print assigned.min()

# only look at clumps with localizations from each channel
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.