eroded.areas(spatstat)
eroded.areas()所属R语言包:spatstat
Areas of Morphological Erosions
领域形态糜烂的
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Computes the areas of successive morphological erosions of a window.
计算领域的的连续形态糜烂的一个窗口。
用法----------Usage----------
eroded.areas(w, r)
参数----------Arguments----------
参数:w
A window.
一个窗口。
参数:r
Numeric vector of radii at which erosions will be performed.
在将执行糜烂的半径数值向量。
Details
详细信息----------Details----------
This function computes the areas of the erosions of the window w by each of the radii r[i].
该函数计算的区域的糜烂的窗口w每个半径r[i]。
The morphological erosion of a set W by a distance r > 0 is the subset consisting of all points x in W such that the distance from x to the boundary of W is greater than or equal to r. In other words it is the result of trimming a margin of width r off the set W.
一组的形态侵蚀W的距离r > 0是所有的点的子集组成的x in W等x边界的距离由W工业是大于或等于r。换句话说,它是结果的修剪缘的宽度r落定W的。
The argument r should be a vector of positive numbers. The argument w should be a window (an object of class "owin", see owin.object for details) or can be given in any format acceptable to as.owin().
参数r应该是一个正数向量。参数w应该是一个窗口类的一个对象"owin",看到owin.object的详细信息,或可以以任何格式的接受的as.owin()。
Unless w is a rectangle, the computation is performed using a pixel raster approximation.
除非w是一个矩形,进行使用的像素栅格近似计算。
To compute the eroded window itself, use erosion.
要计算侵蚀窗口本身,使用erosion。
值----------Value----------
Numeric vector, of the same length as r, giving the areas of the successive erosions.
数值向量,相同的长度为r,给予领域的连续糜烂。
(作者)----------Author(s)----------
Adrian Baddeley
<a href="mailto:Adrian.Baddeley@csiro.au">Adrian.Baddeley@csiro.au</a>
<a href="http://www.maths.uwa.edu.au/~adrian/">http://www.maths.uwa.edu.au/~adrian/</a>
and Rolf Turner
<a href="mailto:r.turner@auckland.ac.nz">r.turner@auckland.ac.nz</a>
参见----------See Also----------
owin, as.owin, erosion
owin,as.owin,erosion
实例----------Examples----------
w <- owin(c(0,1),c(0,1))
a <- eroded.areas(w, seq(0.01,0.49,by=0.01))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|