Skip to content

Instantly share code, notes, and snippets.

@quantumjot
quantumjot / trackpy-napari.ipynb
Created October 12, 2020 07:53
napari-trackpy
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@quantumjot
quantumjot / napari-track-tests.py
Last active September 5, 2021 19:26
Tests for napari track layer
import napari
import numpy as np
def _circle(r, theta):
x = r*np.cos(theta)
y = r*np.sin(theta)
return x, y
def _sphere(r, theta, psi):