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.
Sharing the bioimage dataset with 4D/5D array (tensor) structures via Bioconductor
The original dataset is available in Google Drive.
Start R.app
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)
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)
qr <- query(eh, c("BioImageDbs", "EM_id0001"))
#Show info
N <- 2
qr[N]
#View
magick::image_read(qr[[N]])
Copyright (c) 2021 Satoshi Kume released under the Artistic License 2.0.
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}},
}