licornea_tools
copy_cors.cc
Go to the documentation of this file.
1 #include <iostream>
2 #include <fstream>
3 #include <string>
4 #include <cstdlib>
5 #include <stdexcept>
6 #include "../lib/args.h"
8 
9 using namespace tlz;
10 
11 int main(int argc, const char* argv[]) {
12  get_args(argc, argv, "in_cors.json out_cors.json");
14  std::string out_cors_filename = out_filename_arg();
15  export_image_corresponcences(cors, out_cors_filename);
16 }
17 
Set of features, each on set of views.
image_correspondences image_correspondences_arg()
std::string out_filename_arg()
Definition: args.cc:104
int main(int argc, const char *argv[])
Definition: copy_cors.cc:11
void export_image_corresponcences(const image_correspondences &cors, const std::string &filename)
void get_args(int argc, const char *argv[], const std::string &usage)
Definition: args.cc:49