PCV icon indicating copy to clipboard operation
PCV copied to clipboard

[HELP Needed] OSError: filename.sift not found.

Open skarlant001 opened this issue 4 years ago • 2 comments

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?

skarlant001 avatar Aug 18 '21 12:08 skarlant001

Same here, any solutions so far?

Ivanrs297 avatar Oct 21 '22 04:10 Ivanrs297

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

skarlant001 avatar Oct 21 '22 09:10 skarlant001