Skip to content
Shophine edited this page Apr 23, 2021 · 3 revisions

Welcome to the team Tamiyo-p3 wiki!

Project Description

The goal was to develop a video segmentation pipeline that identifies the regions of the videos containing cilia as accurately as possible. Cilia are microscopic hairlike structures that protrude from literally every cell in your body. They beat in regular, rhythmic patterns to perform myriad tasks, from moving nutrients into moving irritants out to amplifying cell-cell signaling pathways to generating calcium fluid flow in early cell differentiation.

Dataset:

The data are all available on GCP: gs://uga-dsp/project3

In that parent folder, we will find two subfolders: data and masks.

  • data contains a bunch of folders (325 of them), named as hashes, each of which contains 100 consecutive frames of a grayscale video of cilia.
  • masks contain a number of PNG images (211 of them), named as hashes (corresponding to the subfolders of data), that identify regions of the corresponding videos where cilia are.
  • Also within the parent folder are two text files: train.txt and test.txt. They contain the names, one per line, of the videos in each dataset. Correspondingly, you will only find masks in the masks folder for those named in train.txt; the others, you’ll need to predict (and are on AutoLab)! The training/testing split is 65 / 35, which equates to about 211 videos for training and 114 for testing.
The data itself are grayscale 8-bit images taken with DIC optics of cilia biopsies published in this 2015 study. For each video, you are provided 100 subsequent frames, which is roughly equal to about 0.5 seconds of real-time video (the framerate of each video is 200 fps). Since the videos are grayscale, if you read a single frame in and notice its data structure contains three color channels, you can safely pick one and drop the other two. The same goes for the masks. Speaking of the masks: each mask is the same spatial dimensions (height, width) as the corresponding video. Each pixel, however, is colored according to what it contains in the video:
  • 2 corresponds to cilia (what you want to predict!)
  • 1 corresponds to a cell
  • 0 corresponds to background (neither a cell nor cilia)
We are ONLY required to predict CILIA.
Clone this wiki locally