I download sift implementation from : https://sites.google.com/site/btabibian/projects/3d-reconstruction/code
but i get the error : 'INVERT METHOD' does not exist in the namespace 'Emgu.CV.CvEnum'. from code line : CvInvoke.cvInvert(H, H_inv.Ptr, Emgu.CV.CvEnum.INVERT_METHOD.CV_SVD); any suggestion to solve my problem?
This sample uses a very old version of EmguCV: 2.0.1.0. The current version is 3.0.
You have to change the CvInvoke.CvInvert() call into CvInvoke.Invert(). The third method parameter is of type Emgu.CV.CvEnum.DecompMethod, so you have to change INVERT_METHOD.CV_SVD into DecompMethod.Svd.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With