[HELP Needed] OSError: filename.sift not found.
Hello, I am working on image feature matching and I started following the code examples of the PCV book. the following code `imname1 = './data/sample1.jpg' imname2 = './data/sample2.jpg'
process and save features to file
sift.process_image(imname1, 'sample1.sift')
sift.process_image(imname2, 'sample2.sift')works fine and I get a message when done _" processed tmp.pgm to sample1.sift" "processed tmp.pgm to sample2.sift"_ but when I am trying to use thisl1, d1 = sift.read_features_from_file('sample1.sift')
l2, d2 = sift.read_features_from_file('sample2.sift')
matchscores = sift.match_twosided(d1, d2)`
I get an OSError that says sample.sift not found
Can you help me?
Same here, any solutions so far?
Same here, any solutions so far?
If I remember correctly, I didn't find any solution so I tried another way for what I wanted to do.
I'll leave the issue open if anyone else wants to reply