aboutsummaryrefslogtreecommitdiffstats
path: root/meowpp.test/src/features.cpp
blob: 382dffa55b9af490d39a4ece7e0808dac8608bd1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include <cstdio>

#include "meowpp/Usage.h"

using namespace meow;

Usage usg("features");

int setup(int argc, char** argv) {
  usg.optionAdd("h"   , "Display this help document");
  usg.optionAdd("help", "Display this help document");
  usg.optionAdd("i",
                "Specify the input images are in a directory instead of"
                " process arguments",
                "pathname",
                "",
                false);
  usg.optionAdd("o",
                "Output images with denoting feature points",
  return 1;
}

int main(int argc, char** argv) {
  int ret;
  if ((ret = setup(argc, argv)) <= 0) return -1;
  return 0;
}