BioImageDbs

Description

This package supplies ExperimentHub with 4D/5D arrays of microscopy-based imaging dataset including the original images and their supervised labels. This dataset is used for an evaluation of the bioimage analytical model using machine learning and deep learning. The dataset is provided as R list data of the multiple 4D/5D arrays that can be loaded to Keras/tensorflow in R.

Topics in this project

Data source (GoogleDrive)

The original dataset is available in Google Drive.

Vignettes

Information

Installation

  1. Start R.app

  2. Run the following commands in the R console.

if (!requireNamespace("BiocManager", quietly = TRUE)){ install.packages("BiocManager") }
BiocManager::install(c("ExperimentHub", "BioImageDbs"))
library(ExperimentHub)
library(BioImageDbs)

install.packages("magick")
library(magick)

Simple usage

  1. Search and download the image dataset.
eh <- ExperimentHub()

#Data search
qr <- query(eh, c("BioImageDbs", "EM_id0001"))

#Show the metadata of EM_id0001
N <- 1
qr[N]
str(qr[N])

#Data download
ImgData <- qr[[N]]

#Show info
str(ImgData)
  1. Display the GIF animation.
qr <- query(eh, c("BioImageDbs", "EM_id0001"))

#Show info
N <- 2
qr[N]

#View
magick::image_read(qr[[N]])

License

Copyright (c) 2021 Satoshi Kume released under the Artistic License 2.0.

Cite

If any scientific publications derive from this project, you should cite:

Kume S, Nishida K (2021). BioImageDbs: Bio- and biomedical imaging dataset for machine learning and deep learning (for ExperimentHub). Bioconductor: ExperimentHub package.

#BibTeX
@misc{Kume2021bioc,
  title={BioImageDbs: Bio- and biomedical imaging dataset for machine learning and deep learning (for ExperimentHub)},
  author={Kume, Satoshi and Nishida, Kozo},
  year={2021},
  publisher={Bioconductor},
  note={Experiment Packages},
  howpublished={\url{https://bioconductor.org/packages/release/data/experiment/html/BioImageDbs.html}},
}

Authors