Commit 28bca0ad authored by Gary Bradski's avatar Gary Bradski

add docs to feature matching

parent 59313f2a
...@@ -5,11 +5,19 @@ ...@@ -5,11 +5,19 @@
using namespace cv; using namespace cv;
void help()
{
printf("\nThis program demonstrates using features2d detector, descriptor extractor and simple matcher\n"
"Using the SURF desriptor:\n"
"\n"
"Usage: matcher_simple <image1> <image2>\n");
}
int main(int argc, char** argv) int main(int argc, char** argv)
{ {
if(argc != 3) if(argc != 3)
{ {
printf("Usage: matcher_simple <image1> <image2>\n"); help();
return -1; return -1;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment