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.
Quick Start
To install Cell Data Loader, simply type into a standard UNIX terminal
pip install cell-data-loader
To use a quick Jupyter Notebook example, navigate to example/CellDataLoaderPlayground.ipynb, download it, and run it in Jupyter Notebook. On a Mac, that may be run with the following command:
python3 -m jupyterlab ~/Downloads/CellDataLoaderPlayground.ipynb
Python
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:
...
Boxes
In cases where you need to cut out individual cells from an image and have the coordinates file, cell_data_loader.py accepts an argument, file_to_label_regex, which is a regex that translates image file names into the paths of CSVs that correspond to the inputs that mark out the coordinates of labels on the cells. The format of the csv is as follows:
| X | Y | W | H | Label |
|---|---|---|---|---|
| 14 | 13 | 5 | 6 | 0 |
| 20 | 25 | 15 | 5 | 1 |
The file_to_label_regex is represented as a tuple of two regexes — a matching and a replacement expression. So if an image is named '/path/to/AF647-1.tif' and a label file is named '/path/to/For_DL_AF647-1.csv', the following expression would be appropriate:
dataloader = CellDataloader('/path/to/AF647-1.tif',file_to_label_regex=((r'%s([^%s+]*).tif' % (os.sep,os.sep),r'%sFor_DL_\1.csv' % os.sep)))
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
)
Release files for cell-data-loader 0.0.41
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| cell_data_loader-0.0.41.tar.gz | 28.1 MB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| cell_data_loader-0.0.41-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 28.1 MB
Release files / cell_data_loader-0.0.41.tar.gz
| Download URL | cell_data_loader-0.0.41.tar.gz |
|---|---|
| Size | 28.1 MB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
b32729c99e8b74f4ce886f5ff06c8e06359dbe82daa5e16e3b0f873a3676e1a8
|
|
BLAKE2b-256 checksum How to use checksums |
ea9a293259c1c3f4cd0789e71061c18a4368c167fc724a0fe6d60c44c4b78cda
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 22, 2026.
Transparency logRelease files / cell_data_loader-0.0.41-py3-none-any.whl
| Download URL | cell_data_loader-0.0.41-py3-none-any.whl |
|---|---|
| Size | 22.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
dacffaf0b706fb11a6b50860853dcb0c584905843410f904735a82143a93b6d0
|
|
BLAKE2b-256 checksum How to use checksums |
ddd943b9c3e63c55b0ae503442db952b6b40c1ee2ba8c3127911bef66d28e096
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 22, 2026.
Transparency log