blob: fd0bb2204838e7beaab4c2d220012d6be9f4abb9 [file] [log] [blame]
James Kuszmaule2c71ea2019-03-04 08:14:21 -08001#include "y2019/vision/constants.h"
2#include <iostream>
3
4int main(int argc, char *argv[]) {
5 if (argc != 2) {
6 ::std::cout << "Expected a command line argument specifying the file name "
7 "to write to.\n";
8 return 1;
9 }
10 ::y2019::vision::DumpCameraConstants(argv[1], -1, {});
11}