Plasmodium Autocount is a python script for counting blood cells infected with malaria on a blood smear.
With the closure of the VBC and uncertain future of the VBC website at vicbioinformatic.com, the Plasmodium Autocount code is preserved here:
Semiautocount was intended as a new version of Plasmodium Autocount incorporating machine learning from manually annotated cells. The goal was to count types of cell in a blood smear based on interactive training, for example to measure the stage and severity of malarial infection.
Development of Semiautocount is on hold, possibly permanently. The code is functional but has not undergone much tuning. In particular there is considerable scope to extend the set of measurements used to classify cells.
This is free software distributed under the GPL version 2 license.
- Python 2
Python packages:
- numpy
- scipy
- scikit-image (requires numpy, six)
- scikit-learn (requires numpy)
- werkzeug
- Jinja2
- nesoni
pip installation will attempt to install these, however note that as at June 2014, installing scikit-image and scikit-learn require numpy and six to already be installed or things break.
I recommend using the Anaconda Python installer:
Install the Python 2.7 version, 32 or 64 bit as appropriate. Once Anaconda is installed, Semiautocount can be installed and upgraded using pip as shown below.
pip install https://github.com/Victorian-Bioinformatics-Consortium/semiautocount/archive/master.zip
This gives you:
- semiac command line program
- semiautocount module in python
pip uninstall -y semiautocount nesoni
pip install https://github.com/Victorian-Bioinformatics-Consortium/semiautocount/archive/master.zip
1. Create a Semiautocount working directory based on a set of images. The images are segmented into cells. eg
semiac segment: mydir inputimagesdir
(Note: If you have limited memory and multiple cores, you may need to limit to a single core with --make-cores 1)
(Note: Any existing images and labels in mydir will be deleted.)
2. Configure the working directory with "semiac configure:", eg
semiac configure: mydir labels: x=mis-segmentation d=debris w=white-blood-cell 0=uninfected 1=singlet 2=doublet
3. Interactively label some of the cells with "semiac label:". This starts a local webserver which you can then interact with in your web-browser.
semiac label: mydir
This will display a url (eg http://localhost:8000). In your web-browser, go to this url. Click on "Label cells" and label cells until the classification is satisfactory.
Carry out steps 1 and 2 as above then:
3. Link mydir to a working directory you've previously created containing training data:
semiac configure: mydir training: mytrainingdir
4. Run the classifier from the command line:
semiac classify: mydir
5. Generate output files:
semiac report: mydir
Having performed steps 1 and 2 above, use:
semiac import: mydir inputimagesdir
This will import any .txt files in inputimagesdir as Cell Counting Aid cell labels.
In the directory created by Semiautocount:
-
The file "totals.csv" contains the total number of each cell type seen in each image. For each cell, the manual label is used if present otherwise the automatic classification is used.
-
The file "manual_totals.csv" contains the total number of manually labelled cells of each type in each image.
-
The subdirectory "coordinates" contains a file for each image with a line for each cell, comprising x,y,call,manual_label where
- x and y are the coordinates of the center of the cell.
- call is the cell classification. If the cell has been manually labeled this will always match the manual label, otherwise if will have the automatic classification.
- manual_label is the label you gave to the cell if the cell was manually labeled.