tttrlib icon indicating copy to clipboard operation
tttrlib copied to clipboard

File format agnostic low level, high performance API to read and process time-tagged-time resolved (TTTR) data for single-molecule and image spectroscopy (Sample data: https://gitlab.peulen.xyz/skf/tt...

Results 5 tttrlib issues
Sort by recently updated
recently updated
newest added

Hello, I test three PTU files (>2GB, export from SP8), but fail to load at the first step: data = tttrlib.TTTR(filename, 'PTU') In the console, it showed that 'Process finished...

Dear Thomas, `ffile = r'path\to\some\file.ptu trace = tttrlib.TTTR(ffile) trace.intensity_trace()` causes a kernel crash (python 3.7). Giving an argument to intensity_trace resolves this issue. `trace.intensity_trace(1)` According to the docs, the time_window_length...

Is it possible to add support for the MultiHarp150 ptu format? I can provide test data etc. Actually this is readily available as PicoQuant code demo https://github.com/PicoQuant/PicoQuant-Time-Tagged-File-Format-Demos/blob/master/PTU/Python/Read_PTU.py Check Record types...

Add pixel lookup to correct "bad" non-linear scanners. Modify: ``` void CLSMImage:: fill( TTTR* tttr_data, std::vector channels, bool clear, const std::vector &micro_time_ranges) ``` Currently the pixel number is calculated linearly....

Hi, I have used tttrlib in 2022 to retrieve the measurement time within the header (PicoHarp 300). It was working very well with the following code: ``` data = tttrlib.TTTR('measurement.ptu',...