LSMToolbox - read TimeIntervall from macro ?

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

LSMToolbox - read TimeIntervall from macro ?

Martin Höhne
Dear list,

I can read the TimeIntervall from a Zeiss lsm timeseries file with the LSMToolbox.
Is there a way to read this variable from a macro?

Or another possible solution would be:
I know that I can get the timestamps via macro. But I only manage to get them as a single line, comma separated. What I would prefer is to get them in a single line tab separated or as a file with each timepoint a separate line. I.e. what one gets from manually clicking "Apply stamps"  > "Dump to text file". Just this function called from a macro.

Thanks,
Martin
Reply | Threaded
Open this post in threaded view
|

Re: LSMToolbox - read TimeIntervall from macro ?

Martin Höhne
I figured out how to get the TimeInterval value using BioFormats.
Maybe someone is interested - might be not the most elegant way, but it works.

run("Bio-Formats Macro Extensions");
path = File.openDialog("Choose a file");
Ext.setId(path);
Ext.getPlaneTimingDeltaT(deltaT, 1);
print (deltaT);


Martin