Implementation |
|||||||||||||||||||||||||||||||||
Here I explain how to process particle
tracking data in order to calculate the msd moments and assess the heterogeneity
of the observed sample. It assumes that you are on an IDL platform, and
that you followed the tutorial on the website "Particle tracking
using IDL", (see here ![]() ![]() |
|||||||||||||||||||||||||||||||||
Notes on particle
tracking |
|||||||||||||||||||||||||||||||||
When you follow the successive steps
described in the website "Particle tracking using IDL" to process
your movie, there are several points to keep in mind in order to use
efficiently the procedure described in the following parts. In the pre-tracking,
which deals with detecting and locating particles in each frame, noise
discrimination is performed by selecting valid detections using the morphology
of the identified features (using the provided procedures polycut.pro
or eclip.pro). In particular, the radius and integrated mass of the brightness
profile follows specific variations with the altitude of the particles
in the volume of observation of the microscope. When clipping these parameters,
be aware that you change the depth of tracking of the setup. Extensive
details on this aspect can be found in the article by Savin & Doyle
(2008) (available here ![]()
I assume now that you have a nice clean tracked array t to work the following with. |
|||||||||||||||||||||||||||||||||
Calculating
the tracking depth |
|||||||||||||||||||||||||||||||||
The procedure nbox.pro is used to
calculate the number of tracked particles in each frame of the original
movie. Thus it gives you the number of particle in the tracking volume
as a function of time. To run it on the tracked array t,
simply type at the IDL prompt:
It returns a vector containing as much elements as the number of time steps of the tracked array, each elements giving the number of positions belonging to trajectories for each time ordered time step. However particles detected in the first frame and disappearing within goodenough frames will not appear in the tracked array. As a result, the first goodenough elements (and by symmetry, the last goodenough elements as well) of n are not valid numbers. To get the average number Nb of particle in the volume of tracking, you would then type:
where goodenough is whatever number you used when you called track.pro. I would advise to adjust the concentration of beads and/or the magnification of your tracking setup to track at least Nb≥100 particles in your field of view at all time. This of course plays a role in having enough spatial sampling in a material to assess accurately its heterogeneity. You can use the average number above to determine the depth of tracking of your setup. If the field of view is xb×yb and the concentration of probes is Cb, then the depth of tracking is given by Nb/(Cb×xb×yb). This method to determine the depth of tracking is very accurate, given that you have a constant density of probes in the tracking volume (see Savin & Doyle (2008) referenced here ![]()
I typically obtain a value of about 5% for the coefficient of variation when Nb≅100. |
|||||||||||||||||||||||||||||||||
Calculating
the msd moments |
|||||||||||||||||||||||||||||||||
You can run the program msd_moments.pro
(it is an IDL function) on the tracked array t by
typing:
The procedure accepts several options, most of them being found in the original msd.pro procedure provided in the website "Particle tracking using IDL" linked here ![]()
The output array m has several columns which are, for Dim=2:
For example, a typical use of msd_moments.pro in a system that tracks particle with a magnification of 0.2 μm.pxl-1 and at a temporal sampling of 30 frames per second would be:
and to display the average msd M1 in the x direction with 1-sigma error bars:
The heterogeneity ratio M2/M12 in the x direction would be plotted using:
Finally the degree of sampling θ that indicates the "detectability" of the sample by particle tracking would be plotted with:
A rule of thumb in the heterogeneous systems I have studied so far is that the criteria θ>80% seems to ensure correct results. |