Converts general images of cells into formats and labels for deep learning pipelines
Project description
Cell Data Loader
Cell Data Loader is a simple AI support tool in Python that can take in images of cells (or other image types) and output them with minimal effort to formats that can be read by Pytorch (Tensor) or Tensorflow (Numpy) format. With Cell Data Loader, users have the option to output their cell images as whole images, sliced images, or, with the support of CellPose, segment their images by cell and output those individually.
It can also be used for normal computer vision research, which is why CellPose is not a strict dependency.
To install Cell Data Loader, simply type into a standard UNIX terminal
pip install cell-data-loader
The simplest way to use Cell Data Loader is to instantiate a dataloader as such:
from cell_data_loader import CellDataloader
imfolder = '/path/to/my/images'
dataloader = CellDataloader(imfolder)
for image in dataloader:
...
And viola!
Lists of files are also supported:
imfiles = ['/path/to/image1.png','/path/to/image2.png','/path/to/image3.png']
dataloader = CellDataloader(imfiles)
for image in dataloader:
...
Labels
Cell Data Loader has a few ways to support image labels. The simplest is whole images that are located in different folders, with each folder representing a label. This can be supported via the following:
imfolder1 = '/path/to/my/images'
imfolder2 = '/path/to/your/images'
dataloader = CellDataloader(imfolder1,imfolder2)
for label,image in dataloader:
...
Alternatively, if you have one folder or file list with images that have different naming conventions, a regex match is supported:
imfiles = ['/path/to/CANCER_image1.png',
'/path/to/CANCER_image2.png',
'/path/to/CANCER_image3.png',
'/path/to/HEALTHY_image1.png',
'/path/to/HEALTHY_image2.png',
'/path/to/HEALTHY_image3.png']
dataloader = CellDataloader(imfiles,label_regex = ["CANCER","HEALTHY"])
for label,image in dataloader:
...
Arguments
Additional arguments taken by Cell Data Loader include
imfolder = '/path/to/folder'
dataloader = CellDataloader(imfolder,
dim = (64,64),
batch_size = 64,
dtype = "torch", # Can also be "numpy"
label_regex = None,
verbose = True,
segment_image = "whole", # "whole" outputs the whole image, resized
# to dim; "sliced" cuts the image checkerboard pattern into
# dim-shaped outputs, so it's suitable for large images; "cell"
# segments cells from the image using CellPose, though it throws
# an error if CellPose is not installed properly. CellPose is
# not included by default in the dependencies and needs to be
# installed separately by the user.
n_channels = 3, # Detected in first image by default; re-samples all
# images to force this number of channels
augment_image = True, # Augments the output image in the standard
# ways -- rotation, color jiggling, etc.
label_balance = True, # Outputs proportional amounts of each label
# in the dataset
gpu_ids = None, # GPUs that the outputs are read to, if present.
channels_first = True # Places channels either first, before the
# batch dimension, or last
)
Dependencies
Note that the strict dependencies are automatically downloaded just with
pip install cell-data-loader
However, to get support with cell-segmentation-specific images (i.e., segment="cell"), CellPose needs to be installed. GPU integration with CellPose would also need to be handled separately.
Strict dependencies:
numpy
torch
torchvision
opencv-python>=4.5.4
slideio==2.4.1
scipy
scikit-image
pillow
Soft dependencies:
CellPose # For cell segmentation support
Tensorflow
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.