cvEigenVV corresponds to which API in python? [closed]
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'
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.
current docs (including python) are here
please use cv2.eigen instead.