Skip to content

Commit

Permalink
fix for numMatches format display
Browse files Browse the repository at this point in the history
  • Loading branch information
kalwalt committed Apr 1, 2024
1 parent d2a15a9 commit 6e7e597
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ class WebARKitTracker::WebARKitTrackerImpl {
getMatches(frameDescr, frameKeyPts, refPts, framePts);
numMatches = framePts.size();

WEBARKIT_LOG("Num Matches: %zu\n", numMatches);
WEBARKIT_LOG("Num Matches: %d\n", numMatches);

if (numMatches >= minNumMatches) {
m_H = cv::findHomography(refPts, framePts, cv::RANSAC);
Expand Down

0 comments on commit 6e7e597

Please sign in to comment.