Lecture 6 Flashcards
Particle tracking
Hard to analyse moving and reshaping object in motion
- thresholding
- Gaussian PSF model fitting (best)
- Laplacean of Gaussian filtering (LoG)
Cell tracking
- Intensity thresholdign
- Watershed segmentation
- Active contour fitting
- Level set segmentation
Popular methods for particle tracking
- Detection
- Linking
Detection
- Thresholding
- Centroid callculation
- Least-squares Gaussian fitting
- LoG filtering
Linking
- Nearest-neighbor searching
- Multiple hypothesis tracking
- Interacting multiple models
Centroid calculation
In the LS Gaussian fitting
Least squares: S(x0,y0)=sum[I(x,y)-G(x-x0,y-y0)]^2. This is the Gaussian centered at (x0,y0) with sigma to approximate PSF. If you take derivative and set it to zero you can find it in postion x or y.
Least-squares Gaussian fitting
Wide Field Fluorescence Microscopy: sigma=0.21lambda/NA
Laser Scanning Confocal Fluorescence Microscopy: sigma=0.16lambda/NA.
Take the Gaussian image profile and find the best fit. For each position you compute the difference between intensity adn Gaussian approach. If there is a nice match, the difference is very smalln The squared value is very small. So we want to minimize the PSF.
Nearest neighbor searching
Connects the dots to the nearest neightbour in the next frame
Multiple hypothesis tracking
All possible connections ro new pixels are stored and remembered. In the end, you created a network and you want to find the most low-cost route, usually shortest route.
Interacting multiple models
Combine NNS and MHT: predict beforehand what you think the route is going to be and make decision of the next pixel based on that prediction.
Measures and approaches to quantify dynamics
- Traveled distances
- Speed measures
- Mean-squared displacement
- Kymograph analysis
Traveled distances
done with mean squared displacement
Speed measures
done with kymograph analysis
Mean-squared displacement
Distance between track points d(pi,pj)=abs(pi-pj)
For a given time lag t: MSD(t)=sum(d^2(pi,pi+t))/(N-t)
Kymograph analysis
Time and space are integrated in one image. This way you can calculate the speed: v=dx/dy.