James Kuszmaul | e2c71ea | 2019-03-04 08:14:21 -0800 | [diff] [blame] | 1 | #include "y2019/vision/constants.h" |
2 | #include <iostream> | ||||
3 | |||||
4 | int 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 | } |