dilation(VPdtw)
dilation()所属R语言包:VPdtw
Compute a morphological dilation of a signal
计算一个形态扩张的信号
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A dilation is a moving local maximum over a window of specific fixed width specified by span. This dilation is computed first in one direction and then in the other.
一个扩张是一个移动本地最大的一个窗口具体指定的固定宽度的跨度。计算该扩张是首先在一个方向,然后在其他。
用法----------Usage----------
dilation(y, span)
参数----------Arguments----------
参数:y
signal, a numeric vector
信号,数字矢量
参数:span
the width of the moving window, integer
移动窗口的宽度,整数
Details
详细信息----------Details----------
A dilation is a method often used in mathematical morphology and image analysis (Soille 1999). This function is for vectors not matrices or images though applying it to rows and columns of a matrix will give the corresponding results.
甲扩张常常数学形态学和图像分析(Soille 1999)中使用的方法。此功能是向量不虽然把它应用到一个矩阵的行和列的矩阵或图像将得到相应的结果。
An erosion of a vector or image can also be computed easily from this by computing the dilation of -1 times the vector and transforming back.
侵蚀的矢量或图像也可以被容易地从这个计算,通过计算-1的向量倍的扩张和变换回。
We recommend using a dilation to form a penalty for use in VPdtw.
我们建议您使用一个扩张形成一个penalty使用中VPdtw的。
值----------Value----------
参数:res
Dilation of y with width span
扩张y的宽度跨度
(作者)----------Author(s)----------
David Clifford
参考文献----------References----------
实例----------Examples----------
## Example 1 - dilation of a signal[例1 - 扩张的信号]
data(reference)
dref <- dilation(reference,150)
plot(reference,log="y",type="l")
lines(dref,col=2)
## Example 2 - dilation of an image[实施例2 - 图像的扩张]
BIN <- (volcano>177)
dBIN <- t(apply(BIN,1,dilation,span=5))
dBIN <- apply(dBIN,2,dilation,span=5)
par(mfrow=c(2,2))
image(volcano)
image(BIN)
image(dBIN)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|