Skip to main content

PyTorch-compatible dataset manager for BBBC datasets

Project description

BBBC Segmentation Datasets (2D/3D) - A PyTorch Dataset Manager

📌 Overview

This package provides a PyTorch-compatible dataset manager for Broad Bioimage Benchmark Collection (BBBC) datasets.

It allows users to:

  • Download and manage BBBC segmentation datasets automatically
  • Load datasets as PyTorch Dataset objects
  • Handle 2D & 3D images properly
  • Support image augmentations via torchvision.transforms (#TODO)

🚀 Installation

Install from PyPI
pip install bbbc-datasets
Install from Source

Clone the Repository

git clone https://github.com/mario-koddenbrock/bbbc_datasets.git
cd bbbc_datasets

Install Dependencies

pip install -r requirements.txt
Dependencies:
  • torch, torchvision (Deep Learning Framework)
  • numpy, tifffile, opencv-python (Image Handling)
  • requests, matplotlib (Downloading & Visualization)

📂 Available Datasets

You can list all available BBBC datasets without downloading them. You can also filter the datasets to show only 2D, only 3D, or both types of datasets.

from examples.load_dataset import list_available_datasets

# List all datasets
list_available_datasets()

# List only 2D datasets
list_available_datasets(filter_3d=False)

# List only 3D datasets
list_available_datasets(filter_3d=True)
Output
📂 Available BBBC Datasets:
- BBBC003: DIC microscopy images of mouse embryos for segmentation analysis.
- BBBC004: Synthetic fluorescence microscopy images of nuclei with varying clustering probabilities.
- BBBC005: Simulated fluorescence microscopy images with varying focus blur.
- BBBC006: Z-stack fluorescence microscopy images of human U2OS cells.
- BBBC008: Dataset: Fluorescence microscopy images of human HT29 colon cancer cells.
- BBBC010: Live/dead assay of C. elegans exposed to pathogens.
- BBBC024: 3D Synthetic HL60 Cell Line Images with Varying Clustering Probability and SNR.
- BBBC027: 3D Synthetic Colon Tissue Images with Varying SNR.
- BBBC028: Polymerized Structures in Differential Interference Contrast (DIC) Microscopy.
- BBBC029: Synthetic Differential Interference Contrast (DIC) Images.
- BBBC032: 3D Mouse Embryo Blastocyst Cells.
- BBBC033: 3D Mouse Trophoblast Stem Cells.
- BBBC034: 3D Induced Pluripotent Human Stem Cells (hiPSC).
- BBBC035: Simulated HL60 Cells from the Cell Tracking Challenge.
- BBBC038: Kaggle 2018 Data Science Bowl - Nuclei Segmentation.
- BBBC039: Nuclei of U2OS Cells in a Chemical Screen.
- BBBC046: FiloData3D - Synthetic 3D Time-Lapse Imaging of A549 Cells with Filopodia.
- BBBC050: Nuclei of Mouse Embryonic Cells.

🎨 Visualizing Dataset Samples

Display First Image from Each Dataset

Requires downloading datasets first!

You can display samples from the datasets. Similar to listing datasets, you can filter the samples to show only 2D, only 3D, or both types of datasets.

from examples.load_dataset import display_dataset_samples

# Display samples from all datasets
display_dataset_samples()

# Display samples from only 2D datasets
display_dataset_samples(filter_3d=False)

# Display samples from only 3D datasets
display_dataset_samples(filter_3d=True)

📥 Download and Load a Dataset

Load a Dataset as a PyTorch Dataset

from bbbc_datasets.datasets.bbbc004 import BBBC004
from torch.utils.data import DataLoader

# Load BBBC004 dataset
dataset = BBBC004()

# Create a DataLoader
dataloader = DataLoader(dataset, batch_size=4, shuffle=True)

# Iterate through data
for images, labels in dataloader:
    print(f"Batch shape: {images.shape}, Labels: {labels.shape if labels is not None else 'None'}")

The filter_datasets function allows you to filter a list of dataset classes based on whether they are 2D, 3D, or both.

from bbbc_datasets.utils.general import filter_datasets
from tests import DATASETS

# Filter all datasets
datasets_all = filter_datasets(DATASETS)

# Filter only 2D datasets
datasets_2d = filter_datasets(DATASETS, filter_3d=False)

# Filter only 3D datasets
datasets_3d = filter_datasets(DATASETS, filter_3d=True)

🛠 Running Tests

Validate Dataset URLs

Checks if all dataset URLs are reachable 🌍

python -m unittest tests/test_dataset_urls.py
Verify Dataset Loading

Ensures datasets can be loaded and accessed correctly 🛠

python -m unittest tests/test_dataset_loading.py

📝 Up-next

  • Thinking of what is up next
  • Maybe integrating other datasets as cellpose, livecell, etc.

🙌 Contributing

Contributions are welcome! If you find issues or want to add new features, feel free to:

  • Submit a Pull Request
  • Report Issues in the GitHub Issues section

📜 License

This project is licensed under the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bbbc_datasets-0.1.5.tar.gz (21.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

bbbc_datasets-0.1.5-py3-none-any.whl (32.7 kB view details)

Uploaded Python 3

File details

Details for the file bbbc_datasets-0.1.5.tar.gz.

File metadata

  • Download URL: bbbc_datasets-0.1.5.tar.gz
  • Upload date:
  • Size: 21.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for bbbc_datasets-0.1.5.tar.gz
Algorithm Hash digest
SHA256 e4de8e3f748b9f9c8cde03284108d06bc45e73d86e141860dd0d960e3c9e5e64
MD5 ee8c34bc8bad3190089a40b6adde3453
BLAKE2b-256 1b9af9d50a8972b19fb888ffb29785136ed35549095e0570addb9824ec5db7ff

See more details on using hashes here.

File details

Details for the file bbbc_datasets-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: bbbc_datasets-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 32.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for bbbc_datasets-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 952fef053247409de41fb091a86a9d1da9ee7aee80159311bb1cc44bbbc709f0
MD5 9bbc062a724595a7b6530e163691f526
BLAKE2b-256 e5b60e4b00af3afb0ac1163086165fee06a67f84929c113713f3bbba534ef13c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page