|
std::tuple< bool, Eigen::VectorXd > | open3d::utility::SolveLinearSystemPSD (const Eigen::MatrixXd &A, const Eigen::VectorXd &b, bool prefer_sparse, bool check_symmetric, bool check_det, bool check_psd) |
| Function to solve Ax=b. More...
|
|
Eigen::Matrix4d | open3d::utility::TransformVector6dToMatrix4d (const Eigen::Vector6d &input) |
|
Eigen::Vector6d | open3d::utility::TransformMatrix4dToVector6d (const Eigen::Matrix4d &input) |
|
std::tuple< bool, Eigen::Matrix4d > | open3d::utility::SolveJacobianSystemAndObtainExtrinsicMatrix (const Eigen::Matrix6d &JTJ, const Eigen::Vector6d &JTr) |
|
std::tuple< bool, std::vector< Eigen::Matrix4d, Matrix4d_allocator > > | open3d::utility::SolveJacobianSystemAndObtainExtrinsicMatrixArray (const Eigen::MatrixXd &JTJ, const Eigen::VectorXd &JTr) |
|
template<typename MatType , typename VecType > |
std::tuple< MatType, VecType, double > | open3d::utility::ComputeJTJandJTr (std::function< void(int, VecType &, double &, double &)> f, int iteration_num, bool verbose) |
|
template<typename MatType , typename VecType > |
std::tuple< MatType, VecType, double > | open3d::utility::ComputeJTJandJTr (std::function< void(int, std::vector< VecType, Eigen::aligned_allocator< VecType >> &, std::vector< double > &, std::vector< double > &)> f, int iteration_num, bool verbose) |
|
template std::tuple< Eigen::Matrix6d, Eigen::Vector6d, double > | open3d::utility::ComputeJTJandJTr (std::function< void(int, Eigen::Vector6d &, double &, double &)> f, int iteration_num, bool verbose) |
|
template std::tuple< Eigen::Matrix6d, Eigen::Vector6d, double > | open3d::utility::ComputeJTJandJTr (std::function< void(int, std::vector< Eigen::Vector6d, Vector6d_allocator > &, std::vector< double > &, std::vector< double > &)> f, int iteration_num, bool verbose) |
|
Eigen::Matrix3d | open3d::utility::RotationMatrixX (double radians) |
|
Eigen::Matrix3d | open3d::utility::RotationMatrixY (double radians) |
|
Eigen::Matrix3d | open3d::utility::RotationMatrixZ (double radians) |
|
Eigen::Vector3uint8 | open3d::utility::ColorToUint8 (const Eigen::Vector3d &color) |
|
Eigen::Vector3d | open3d::utility::ColorToDouble (uint8_t r, uint8_t g, uint8_t b) |
| Color conversion from uint8_t 0-255 to double [0,1]. More...
|
|
Eigen::Vector3d | open3d::utility::ColorToDouble (const Eigen::Vector3uint8 &rgb) |
|
template<typename IdxType > |
Eigen::Matrix3d | open3d::utility::ComputeCovariance (const std::vector< Eigen::Vector3d > &points, const std::vector< IdxType > &indices) |
| Function to compute the covariance matrix of a set of points. More...
|
|
template<typename IdxType > |
std::tuple< Eigen::Vector3d, Eigen::Matrix3d > | open3d::utility::ComputeMeanAndCovariance (const std::vector< Eigen::Vector3d > &points, const std::vector< IdxType > &indices) |
| Function to compute the mean and covariance matrix of a set of points. More...
|
|
template Eigen::Matrix3d | open3d::utility::ComputeCovariance (const std::vector< Eigen::Vector3d > &points, const std::vector< size_t > &indices) |
|
template std::tuple< Eigen::Vector3d, Eigen::Matrix3d > | open3d::utility::ComputeMeanAndCovariance (const std::vector< Eigen::Vector3d > &points, const std::vector< size_t > &indices) |
|
template Eigen::Matrix3d | open3d::utility::ComputeCovariance (const std::vector< Eigen::Vector3d > &points, const std::vector< int > &indices) |
|
template std::tuple< Eigen::Vector3d, Eigen::Matrix3d > | open3d::utility::ComputeMeanAndCovariance (const std::vector< Eigen::Vector3d > &points, const std::vector< int > &indices) |
|