Input Files¶
Movies¶
Movies should be stored as image sequences, image stacks, or in the Nikon ND2 format.
- Image Sequences (Individual Images)
- Each file contains an image from one channel at one time point. All files from the same channel should locate in the same folder.
- Image Stacks (Multi-Page Images)
- TIFF or GIF formats only. Each stack contains the images from one channel at all time points.
- Nikon ND2 Format
- A movie can be stored in multiple segments (files). Each segment contains the images from all channels at all time points within the segment. This requirement is usually satisfied if the movie is captured by the Nikon NIS Element software.
The first channel should image cell nuclei. Images of this channel will be used for Segmentation and Track Linking. Images of the other channels will be used for Signal Extraction.
Camera Dark Noises (Optional)¶
Camera dark noises refer to the pixel intensities without illumination. Also known as CMOS Offset.
Camera dark noises are represented in a MATLAB data file (.mat) with a single matrix called cmosoffset. cmosoffset has the same dimension as the movie images. Each element stores the value of camera dark noises at the corresponding pixel.
Illumination Bias (Optional)¶
Illumination bias refers to the uneven laser illumination within the field of view. Correction of this bias is also known as shading correction.
Illumination bias is fluorescence channel-dependent. For each channel, it is represented in a MATLAB data file (.mat) with a single matrix called bias. bias has the same dimension as the movie images. Each element stores the relative intensity at the corresponding pixel compared to the image average.
Before analysis, EllipTrack removes the camera dark noises and illumination bias from each image.
I = (double(I) - cmosoffset) ./ bias;
Here, I refers to an image and ./ refers to elementwise-division.