use of uk.ac.sussex.gdsc.smlm.results.procedures.StandardResultProcedure in project GDSC-SMLM by aherbert.
the class DriftCalculator method findTimeLimits.
private static int[] findTimeLimits(MemoryPeakResults results) {
final StandardResultProcedure sp = new StandardResultProcedure(results);
sp.getT();
return MathUtils.limits(sp.frame);
}
Aggregations