farahm
farahm

Reputation: 1326

Cholesky Decomposition of matrix in OpenCV

is there any function in OpenCV that I can use to apply Cholesky Decomposition on a matrix?

Upvotes: 1

Views: 1985

Answers (1)

user5674437
user5674437

Reputation: 21

If still relevant, OCV 3.0.0 supports Cholesky directly through the HAL interface. See cv::hal::Cholesky

Upvotes: 2

Related Questions