Description Usage Arguments Details Value See Also Examples
Given a stack of images img
, use the first frames_per_set
of them to
create one number image, the next frames_per_set
of them to create the next
number image and so on to get a time-series of number images.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
img |
A 4-dimensional array of images indexed by |
def |
A character. Which definition of number do you want to use, |
frames_per_set |
The number of frames with which to calculate the successive numbers. |
overlap |
A boolean. If |
thresh |
The threshold or thresholding method (see
|
detrend |
Detrend your data with |
quick |
|
filt |
Do you want to smooth ( |
s |
A positive number. The S-factor of microscope acquisition. |
offset |
Microscope acquisition parameters. See reference Dalal et al. |
readout_noise |
Microscope acquisition parameters. See reference Dalal et al. |
gamma |
Factor for correction of number n due to the illumination
profile. The default ( |
parallel |
Would you like to use multiple cores to speed up this
function? If so, set the number of cores here, or to use all available
cores, use |
This may discard some images, for example if 175 frames are in the input and
frames_per_set = 50
, then the last 25 are discarded. If detrending is
selected, it is performed on the whole image stack before the sectioning is
done for calculation of numbers.
An object of class number_ts_img.
1 2 | img <- ijtiff::read_tif(system.file("extdata", "50.tif", package = "nandb"))
nts <- number_timeseries(img, "n", frames_per_set = 20, thresh = "Huang")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.