Skip to content

Commit

Permalink
tools: fixed bug for affine transformation.
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-michot committed Apr 14, 2011
1 parent b440ceb commit 2128a28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/tools/mosaicing_video.cc
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ int main(int argc, char **argv) {
ComputeRelativeSimilarityMatrices(fg.matches_, &Hs);
break;
case AFFINE:
ComputeRelativeHomographyMatrices(fg.matches_, &Hs);
ComputeRelativeAffineMatrices(fg.matches_, &Hs);
break;
case HOMOGRAPHY:
ComputeRelativeHomographyMatrices(fg.matches_, &Hs);
Expand Down
2 changes: 1 addition & 1 deletion src/tools/stabilize.cc
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ int main(int argc, char **argv) {
ComputeRelativeSimilarityMatrices(fg.matches_, &Hs);
break;
case AFFINE:
ComputeRelativeHomographyMatrices(fg.matches_, &Hs);
ComputeRelativeAffineMatrices(fg.matches_, &Hs);
break;
case HOMOGRAPHY:
ComputeRelativeHomographyMatrices(fg.matches_, &Hs);
Expand Down

0 comments on commit 2128a28

Please sign in to comment.