cvEigenVV corresponds to which API in python? [closed]

asked 2019-05-02 06:50:12 -0600

In the c++ environment, I can use the cvEigenVV command, but I import the opencv module in python, corresponding to which API ? the error in python: module 'cv2' has no attribute 'cvEigenVV'

edit retag flag offensive reopen merge delete

Closed for the following reason question is not relevant or outdated by berak
close date 2019-05-02 08:21:07.051502

Comments

cvXXX functions are from opencv's deprecated (and mostly removed !) 1.0 c-api.

they moved away from that in 2010 already. if you can still use it from C, your opencv version is horribly outdated.

berak gravatar imageberak ( 2019-05-02 08:22:46 -0600 )edit

current docs (including python) are here

berak gravatar imageberak ( 2019-05-02 08:24:43 -0600 )edit

please use cv2.eigen instead.

berak gravatar imageberak ( 2019-05-04 04:36:10 -0600 )edit