Why do python bindings for v3 still use package name "cv2"?
I compiled the python bindings for latest version and found the package name is still cv2:
>>> import cv3
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named cv3
>>> import cv2
>>> cv2.__version__
'3.0.0'
Is the package name going to be updated to cv3?
I guess, cv2 means cv "convert to" ,it's not version.:)