Skip to content

Commit 24993f4

Browse files
authored
Merge pull request #33 from originlake/dspsift_patch
Set first octave to -1 in DSPSIFT to pair with SIFT
2 parents 792b387 + 266b360 commit 24993f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opensfm/src/features/src/dspsift.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ py::tuple dspsift(foundation::pyarray_f image, float peak_threshold,
7373

7474
const int kMaxOctaveResolution = 1000;
7575

76-
vl_covdet_set_first_octave(covdet.get(), 0);
76+
vl_covdet_set_first_octave(covdet.get(), -1);
7777
vl_covdet_set_octave_resolution(covdet.get(), 3);
7878
vl_covdet_set_peak_threshold(covdet.get(), peak_threshold);
7979
vl_covdet_set_edge_threshold(covdet.get(), edge_threshold);

0 commit comments

Comments
 (0)