draw.imwdc(wavethresh)
draw.imwdc()所属R语言包:wavethresh
Draw mother wavelet associated with an imwdc object.
绘制母亲小波与一个imwdc的对象。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function draws the mother wavelet associated with an imwdc.object — a compressed two-dimensional wavelet decomposition.
此函数绘制与imwdc.object - 一个压缩的二维小波分解相关的母小波。
用法----------Usage----------
## S3 method for class 'imwdc':
draw(wd, resolution=128, ...)
参数----------Arguments----------
参数:wd
The imwd class object whose associated wavelet you wish to draw. (I know its called wd, sorry).
imwd类,其相关的小波,你想画的对象。 (对不起,我知道它所谓的WD)。
参数:resolution
The resolution at which the computation is done to compute the wavelet picture. Generally the resolution should be lower for two-dimensional wavelets since the number of computations is proportional to the square of the resolution (the DWT is still O(n) though).
计算是计算的小波图像分辨率。一般情况下,二维小波的分辨率应该是较低的,因为数计算的决议(DWT仍然是O(N)虽然)的平方成正比。
参数:...
Additional arguments to pass to the draw.default function which does the drawing. </table>
额外的参数传递给draw.default函数做图。 </ TABLE>
Details
详细信息----------Details----------
This function extracts the filter component from the imwd object (which is constructed using the filter.select function) to decide which wavelet to draw. Once decided the draw.default function is used to actually do the drawing.
此功能提取filter组件imwd对象(使用filter.select功能的)决定所绘制的小波。一旦决定,使用实际做的图draw.default功能。
值----------Value----------
If the plot.it argument is set to TRUE then nothing is returned. Otherwise, as with draw.default, the coordinates of what would have been plotted are returned.
如果plot.it参数被设置成TRUE,然后返回任何值。否则,作为与draw.default,什么将被绘制的坐标返回。
RELEASE----------RELEASE----------
Version 2 Copyright Guy Nason 1993
第2版版权盖利晨1993年
注意----------Note----------
If the plot.it argument is TRUE (which it is by default) a plot of the mother wavelet or scaling function is plotted on the active graphics device.
如果plot.it的说法是TRUE(这是默认设置)的母亲的小波或缩放功能的图绘制上积极的图形设备。
(作者)----------Author(s)----------
G P Nason
参见----------See Also----------
filter.select, imwdc.object, draw.default.
filter.select,imwdc.object,draw.default。
实例----------Examples----------
#[]
# Let's use the lennon test image[让我们的的列侬测试图像使用]
#[]
data(lennon)
## Not run: image(lennon)[#非执行:图像(列侬)]
#[]
# Now let's do the 2D discrete wavelet transform using Daubechies'[现在,让我们做二维离散小波变换,利用Daubechies“]
# least-asymmetric wavelet N=6[至少对称小波N = 6的]
#[]
lwd <- imwd(lennon, filter.number=6)
#[]
# Now let's threshold the 2D DWT[现在,让我们阈值的二维DWT]
# The resultant class of object is imwdc object.[生成的类的对象是imwdc的对象。]
#[]
lwdT <- threshold(lwd)
#[]
# And now draw the wavelet that did this transform[现在提请小波,这是改造]
#[]
## Not run: draw(lwdT)[#不运行:绘制(lwdT)]
#[]
# A nice little two-dimensional wavelet![一个不错的小二维小波!]
#[]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|