Skip to content

Commit

Permalink
Show number of normal features in blender tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
SamFlt committed Sep 13, 2024
1 parent 91ff15c commit 5544d27
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ int main(int argc, const char **argv)
{
std::stringstream ss;
ss << "Features: edges " << tracker.getNbFeaturesEdge() << ", klt " << tracker.getNbFeaturesKlt()
<< ", depth " << tracker.getNbFeaturesDepthDense();
<< ", dense depth " << tracker.getNbFeaturesDepthDense() << ", depth normals " << tracker.getNbFeaturesDepthNormal();
vpDisplay::displayText(I, I.getHeight() - 30, 20, ss.str(), vpColor::red);
}
}
Expand Down

0 comments on commit 5544d27

Please sign in to comment.