cvEigenVV corresponds to which API in python? [closed]

asked May 2 '19

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'

Preview: (hide)

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 (May 2 '19)edit

current docs (including python) are here

berak gravatar imageberak (May 2 '19)edit

please use cv2.eigen instead.

berak gravatar imageberak (May 4 '19)edit