Bryanyan
Bryanyan

Reputation: 677

How to implement Matrix left division in OpenCV

I am converting the Matlab code to the OpenCV-C code and I need to implement matrix left division. How can it be done in OpenCV? For example, A \ B, A is 18 x 12 matrix and B is 18 x 1 matrix. How can I make it work in OpenCV? Thanks

Upvotes: 0

Views: 1332

Answers (1)

sgarizvi
sgarizvi

Reputation: 16816

The function is already implemented in OpenCV by the name of cvSolve or cv::solve

Upvotes: 2

Related Questions