| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- # LICENSE HEADER MANAGED BY add-license-header
- #
- # Copyright 2018 Kornia Team
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- #
- """Module containing numerical functionalities for SfM."""
- import torch
- from kornia.core import stack, zeros_like
- def cross_product_matrix(x: torch.Tensor) -> torch.Tensor:
- r"""Return the cross_product_matrix symmetric matrix of a vector.
- Args:
- x: The input vector to construct the matrix in the shape :math:`(*, 3)`.
- Returns:
- The constructed cross_product_matrix symmetric matrix with shape :math:`(*, 3, 3)`.
- """
- if not x.shape[-1] == 3:
- raise AssertionError(x.shape)
- # get vector compononens
- x0 = x[..., 0]
- x1 = x[..., 1]
- x2 = x[..., 2]
- # construct the matrix, reshape to 3x3 and return
- zeros = zeros_like(x0)
- cross_product_matrix_flat = stack([zeros, -x2, x1, x2, zeros, -x0, -x1, x0, zeros], dim=-1)
- shape_ = x.shape[:-1] + (3, 3)
- return cross_product_matrix_flat.view(*shape_)
- def matrix_cofactor_tensor(matrix: torch.Tensor) -> torch.Tensor:
- """Cofactor matrix, refer to the numpy doc.
- Args:
- matrix: The input matrix in the shape :math:`(*, 3, 3)`.
- """
- det = torch.det(matrix)
- singular_mask = det != 0
- if singular_mask.sum() != 0:
- # B, 3, 3
- cofactor = torch.linalg.inv(matrix[singular_mask]).transpose(-2, -1) * det[:, None, None]
- # return cofactor matrix of the given matrix
- returned_cofactor = torch.zeros_like(matrix)
- returned_cofactor[singular_mask] = cofactor
- return returned_cofactor
- else:
- raise Exception("all singular matrices")
|