Skip to content

Commit

Permalink
[features] Fix regression
Browse files Browse the repository at this point in the history
  • Loading branch information
pmoulon committed Mar 25, 2021
1 parent 7156213 commit 15197eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/openMVG/features/feature.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ void PointsToMat(
size_t i = 0;
for (const auto &feat : vec_feats)
{
m.col(i) << feat.x(), feat.y();
m.col(i++) << feat.x(), feat.y();
}
}

Expand Down

0 comments on commit 15197eb

Please sign in to comment.