找回密码
 注册
查看: 458|回复: 0

R语言 VPdtw包 dilation()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-10-1 16:33:25 | 显示全部楼层 |阅读模式
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:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2024-11-26 01:51 , Processed in 0.025562 second(s), 16 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表