Skip to content
J.D. Rogers edited this page Apr 28, 2026 · 4 revisions

Welcome to the PTC wiki!

Quickstart:

import photontransfercurve as ptc
import matplotlib.plot as plt
<load data as 3D video with first dimension as time or frames>
signal,noise = ptc.ptc(data)
ge,sr = ptc.fitptc(signal,noise)
plt.figure()
plt.loglog(signal,noise, label='data')
plt.loglog(signal, ge*signal+sr)
plt.legend()

If you find this useful, please consider citing our paper: [coming soon]

Clone this wiki locally