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


Python Rotation.init_identity方法代码示例

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


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

示例1: fit_from_camera

# 需要导入模块: from menpo.transform import Rotation [as 别名]
# 或者: from menpo.transform.Rotation import init_identity [as 别名]
    def fit_from_camera(self, image, camera, instance=None, gt_mesh=None,
                        max_iters=50, camera_update=False,
                        focal_length_update=False, shape_prior_weight=1.,
                        texture_prior_weight=1., return_costs=False):
        # Execute multi-scale fitting
        algorithm_results = self._fit(
            image, camera, instance=instance, gt_mesh=gt_mesh,
            max_iters=max_iters, camera_update=camera_update,
            focal_length_update=focal_length_update,
            reconstruction_weight=1.,
            shape_prior_weight=shape_prior_weight,
            texture_prior_weight=texture_prior_weight,
            landmarks_prior_weight=None, landmarks=None,
            return_costs=return_costs)

        # Return multi-scale fitting result
        return self._fitter_result(
            image=image, algorithm_results=algorithm_results,
            affine_transform=Rotation.init_identity(n_dims=2),
            gt_mesh=gt_mesh)
开发者ID:HaoyangWang,项目名称:menpo3d,代码行数:22,代码来源:fitter.py

示例2: test_rotation2d_as_vector_raises_notimplementederror

# 需要导入模块: from menpo.transform import Rotation [as 别名]
# 或者: from menpo.transform.Rotation import init_identity [as 别名]
def test_rotation2d_as_vector_raises_notimplementederror():
    with raises(NotImplementedError):
        Rotation.init_identity(2).as_vector()
开发者ID:AshwinRajendraprasad,项目名称:menpo,代码行数:5,代码来源:test_homogeneous.py

示例3: test_rotation2d_from_vector_raises_notimplementederror

# 需要导入模块: from menpo.transform import Rotation [as 别名]
# 或者: from menpo.transform.Rotation import init_identity [as 别名]
def test_rotation2d_from_vector_raises_notimplementederror():
    Rotation.init_identity(2).from_vector(0)
开发者ID:grigorisg9gr,项目名称:menpo,代码行数:4,代码来源:homogeneous_test.py

示例4: init_from_image_shape_and_vector

# 需要导入模块: from menpo.transform import Rotation [as 别名]
# 或者: from menpo.transform.Rotation import init_identity [as 别名]
 def init_from_image_shape_and_vector(cls, image_shape, vector):
     r = Rotation.init_identity(n_dims=3)
     t = Translation.init_identity(n_dims=3)
     p = PerspectiveProjection(focal_length=1, image_shape=image_shape)
     return cls(r, t, p).from_vector(vector)
开发者ID:patricksnape,项目名称:menpo3d,代码行数:7,代码来源:camera.py

示例5: test_3d_rotation_n_parameters

# 需要导入模块: from menpo.transform import Rotation [as 别名]
# 或者: from menpo.transform.Rotation import init_identity [as 别名]
def test_3d_rotation_n_parameters():
    assert Rotation.init_identity(3).n_parameters == 4
开发者ID:grigorisg9gr,项目名称:menpo,代码行数:4,代码来源:h_rotation_test.py

示例6: test_rotation3d_identity

# 需要导入模块: from menpo.transform import Rotation [as 别名]
# 或者: from menpo.transform.Rotation import init_identity [as 别名]
def test_rotation3d_identity():
    assert_allclose(Rotation.init_identity(3).h_matrix, np.eye(4))
开发者ID:grigorisg9gr,项目名称:menpo,代码行数:4,代码来源:h_rotation_test.py

示例7: test_rotation3d_as_vector_raises_notimplementederror

# 需要导入模块: from menpo.transform import Rotation [as 别名]
# 或者: from menpo.transform.Rotation import init_identity [as 别名]
def test_rotation3d_as_vector_raises_notimplementederror():
    Rotation.init_identity(3).as_vector()
开发者ID:OlivierML,项目名称:menpo,代码行数:4,代码来源:h_rotation_test.py


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