aboutsummaryrefslogblamecommitdiffstats
path: root/meowpp.test/src/features.cpp
blob: 382dffa55b9af490d39a4ece7e0808dac8608bd1 (plain) (tree)




























                                                                        
#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;
}