Description Usage Arguments Value Author(s) References Examples
View source: R/all_functions_v8.R
Performs a linear convolution of a Numeric Matrix, using a user-supplied linear kernel. The convolution can be executed in a column-wise fashion by setting the col.wise argument to TRUE. Alternatively, the convolution is performed in a row-wise fashion.
1 | LinearConv2(x, krnl, col.wise = TRUE)
|
x |
numeric matrix that will be used as input for the convolution; this matrix typically corresponds to an image where signal (high values) indicates the presence of a cell or a cell-like particle |
krnl |
numeric vector corresponding to the kernel that will be used for the convolution. Briefly, the kernel includes the weights that will be used to compute a weighted sum at each position of the input numeric matrix |
col.wise |
logical; shall the linear convolution be performed in a column-wise or row-wise fashion? |
Linearly convoluted numeric matrix. The resulting matrix has the same dimensions of the inut matrix
Damiano Fantini, damiano.fantini@gmail.com
https://www.data-pulse.com/dev_site/cellmigration/
1 2 3 4 5 6 7 8 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.