getParameters(vec2dtransf)
getParameters()所属R语言包:vec2dtransf
Get tranformation parameters
魏宏参数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Retrieves the transformation parameters
检索的转换参数
用法----------Usage----------
getParameters(object)
参数----------Arguments----------
参数:object
Object of the class SimilarityTransformation or AffineTransformation
对象之类的SimilarityTransformation的或AffineTransformation
Details
详细信息----------Details----------
If the transformation object was initialized with control points, parameters can be retreived only after calling the method 'calculateParameters'.
如果转换对象初始化的控制点,可以通过参数retreived后,才调用该方法的calculateParameters“。
值----------Value----------
A numeric vector with the transformation parameters.
一个数值向量的转换参数。
(作者)----------Author(s)----------
German Carrillo
参考文献----------References----------
GIS and surveying. Section 4.9.3-4. pp.135-137, 2008.
参见----------See Also----------
SimilarityTransformation-class AffineTransformation-class
SimilarityTransformation-classAffineTransformation-class
实例----------Examples----------
# From parameters, similarity transformation[从参数,相似变换]
st <- SimilarityTransformation(parameters=c(1,2,3,4))
getParameters(st)
# From parameters, affine transformation[从参数,仿射变换]
at <- AffineTransformation(parameters=c(1,2,3,4,5,6))
getParameters(at)
# From control points, affine transformation[从控制点,仿射变换]
data(control.points)
at2 <- AffineTransformation(control.points[2:5])
getParameters(at2) # Still unknown parameters[还有未知参数]
calculateParameters(at2)
getParameters(at2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|