Description Usage Arguments Value Author(s) References Examples
View source: R/all_functions_v8.R
Create an array containing centroid data for particles identified in each frame of the imported TIFF image stack
1 | CentroidArray(stack, lobject, threshold, dryrun = FALSE)
|
stack |
3D matrix loaded to workspace from .tif stack |
lobject |
Integer length in pixels somewhat larger than a typical object |
threshold |
the minimum brightness of a pixel that might be local maxima |
dryrun |
logical, shall the execution be skipped |
data.frame of centroids, with 4 columns corresponding to x-position of centroid, y-postion of centroid, brightness, and square of the radius of gyration
Damiano Fantini, damiano.fantini@gmail.com
https://www.data-pulse.com/dev_site/cellmigration/ https://www.mathworks.com/matlabcentral/fileexchange/60349-fasttracks
1 2 3 4 5 | # by default, the dryrun argument is set to FALSE
df <- get(data(TrackCellsDataset))
x0 <- getCellImages(df)
y0 <- cellmigRation:::CentroidArray(x0, 16, 10, TRUE)
y0
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.