0

I would print the descriptors of a feature keypoint. My method receive in input a vector of keypoint, and a mat descriptor for that point. Someone know a simply solution? Thanks

Alexis King
  • 43,109
  • 15
  • 131
  • 205
Mark
  • 346
  • 2
  • 5
  • 18

1 Answers1

1

For each descriptor matrix you have, you can simply

std::cout << descriptor << std::endl;

to print the descriptors to the console.

Aurelius
  • 11,111
  • 3
  • 52
  • 69