当前位置: 首页>>代码示例>>Python>>正文


Python Affine.apply方法代码示例

本文整理汇总了Python中menpo.transform.Affine.apply方法的典型用法代码示例。如果您正苦于以下问题:Python Affine.apply方法的具体用法?Python Affine.apply怎么用?Python Affine.apply使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在menpo.transform.Affine的用法示例。


在下文中一共展示了Affine.apply方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_basic_2d_affine

# 需要导入模块: from menpo.transform import Affine [as 别名]
# 或者: from menpo.transform.Affine import apply [as 别名]
def test_basic_2d_affine():
    linear_component = np.array([[1, -6],
                                 [-3, 2]])
    translation_component = np.array([7, -8])
    h_matrix = np.eye(3, 3)
    h_matrix[:-1, :-1] = linear_component
    h_matrix[:-1, -1] = translation_component
    affine = Affine(h_matrix)
    x = np.array([[0, 1],
                  [1, 1],
                  [-1, -5],
                  [3, -5]])
    # transform x explicitly
    solution = np.dot(x, linear_component.T) + translation_component
    # transform x using the affine transform
    result = affine.apply(x)
    # check that both answers are equivalent
    assert_allclose(solution, result)
    # create several copies of x
    x_copies = np.array([x, x, x, x, x, x, x, x])
    # transform all of copies at once using the affine transform
    results = affine.apply(x_copies)
    # check that all copies have been transformed correctly
    for r in results:
        assert_allclose(solution, r)
开发者ID:AshwinRajendraprasad,项目名称:menpo,代码行数:27,代码来源:test_homogeneous.py

示例2: test_align_2d_affine

# 需要导入模块: from menpo.transform import Affine [as 别名]
# 或者: from menpo.transform.Affine import apply [as 别名]
def test_align_2d_affine():
    linear_component = np.array([[1, -6], [-3, 2]])
    translation_component = np.array([7, -8])
    h_matrix = np.eye(3, 3)
    h_matrix[:-1, :-1] = linear_component
    h_matrix[:-1, -1] = translation_component
    affine = Affine(h_matrix)
    source = PointCloud(np.array([[0, 1], [1, 1], [-1, -5], [3, -5]]))
    target = affine.apply(source)
    # estimate the transform from source and target
    estimate = AlignmentAffine(source, target)
    # check the estimates is correct
    assert_allclose(affine.h_matrix, estimate.h_matrix)
开发者ID:kritsong,项目名称:menpo,代码行数:15,代码来源:h_align_test.py


注:本文中的menpo.transform.Affine.apply方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。