Python 3 compatibility?
I have installed PCV on Anaconda with python 3.5 and tried to compile this:
from PIL import Image
from pylab import *
from numpy import *
from PCV.localdescriptors import dsift, sift
basically dense sift example in examples. The compiler gives me the output:
Traceback (most recent call last):
File "C:\Dropbox\Python\Sorusana\main.py", line 9, in
I think it's because python 2 neture of the library. Any solutions?
Yeah. The entire book and repository is using Python2.
In you specific error you need to have parenthesis for print, like this
print('processed', imagename, 'to', resultname)
How to install PCV
from PCV.classifiers import bayes
Traceback (most recent call last):
File "
I have the same error... "ModuleNotFoundError: No module named 'PCV'"