You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
skarlant001
changed the title
OSError: filename.sift not found.
[HELP Needed] OSError: filename.sift not found.
Aug 18, 2021
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 this
l1, 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?
The text was updated successfully, but these errors were encountered: