Description Usage Arguments Value References Examples
The following function plots the density distribution of one of four shape/size features of cell nuclei computed from getFeatureData(): area, perimeter, radius, or eccentricity.
1 | plotFeature(featureDF, feature = c("area", "perimeter", "radius", "roundness"))
|
featureDF |
A |
feature |
A |
A density plot of indicating the distribution of quantified shape/size feature of cell nulcei.
Gregoire Pau, Florian Fuchs, Oleg Sklyar, Michael Boutros, and Wolfgang Huber (2010): EBImage - an R package for image processing with applications to cellular phenotypes. Bioinformatics, 26(7), pp. 979-981, link https://bioconductor.org/packages/release/bioc/html/EBImage.html
1 2 3 4 5 6 7 8 | # Example 1
rabbit = loadImage(system.file('extdata/Rabbit_01.tif', package='MyoManager'))
rNuc = selectFrame(rabbit, 3)
df = getFeatureData(rNuc)
plotFeature(df, "area")
# Example 2
plotFeature(df, "roundness")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.