The code is mainly used for BII2023 homeworks and group project. Please refer to BII2023 for more details.
This is an example Maven project implementing an ImageJ command with a Pom adapted for BioImageIformatics at EPFL. It was initially cloned from https://github.com/BIOP/ijp-template-ij2 (14th September 2022). The basic programming framework was kept.
New codes were included for resolving bioimaging tasks (i.e., multidimensional data pixel-wise operation, segmentation...) presented in lectures.
Code avaiable here.
Total internal reflection fluorescence (TIRF) microscopy is an advance technique for quantifying fluorescence signal in a hundred-nanometer thin axial section. In the context of particle tracking, it provides high contrast images of how particles diffuse, interact, and traffic within the plane.
Together with Kuzey Aydin and Chang Liu, we built a particle tracking workflow for TIRF microscopy images. Specifically, I focused on the development of particle detection and trajectory linking, and my teammates worked on trajectory analysis.
We can see from the raw data that particles feature diverse moving patterns. In some samples, particles are trafficking for a long distance, while in others, particles burst locally within a short time interval. To generalize the workflow, I included both local max and binarization-based methods. If particles remain roundish and show a sharp intensity burst, the local max filter would be applied; whereas if particles elogate and show an ambiguous intensity profile, the thresholding binerization would be carried out. Two methods share common preprocessing steps (exponential correction, DoG, gaussian 3D, tophat).
I designed a cost function for forming correct linking that represents particle trajectories. In addition to the distance term and the intensity term, I added the orientation term
Furthermore, I also set a upper limit for linkage formation. Due to the fact that it's impossible for particles to have a long displacement within a short time interval, this constraint discontinues trajectories correctly and avoids false connections.
Code avaiable here.
The fluorescence intensity of a life-imaging sample may decay exponentially as time goes because of photobleaching. The bleaching process can be represented as
Given an image stack, this plugin fits the parameters
Code avaiable here.
The plugin computes the gene expression (in form of fluorescence) of the cytoplasm at the very close periphery of every nucleus in a sequence of images. The input should includes two stacks, one for nucleus and the other for cytoplasm. The plugin first generates a mask of nucleus and then overlays ROIs onto the cytoplasm image. The measured values would be plotted into a time vs. intensity scatter plot.
Code avaiable here.
Spots in a sequence of images are tracked and trajectories are plotted. The workflow can be divided into two parts: spot detection and association. Detection is done with a DoG filter followed by local max filtering. Association is done by evaluating the cost function
where