James Kuszmaul | e2c71ea | 2019-03-04 08:14:21 -0800 | [diff] [blame] | 1 | #include <iostream> |
2 | |||||
Philipp Schrader | 790cb54 | 2023-07-05 21:06:52 -0700 | [diff] [blame^] | 3 | #include "y2019/vision/constants.h" |
4 | |||||
James Kuszmaul | e2c71ea | 2019-03-04 08:14:21 -0800 | [diff] [blame] | 5 | int main(int argc, char *argv[]) { |
6 | if (argc != 2) { | ||||
7 | ::std::cout << "Expected a command line argument specifying the file name " | ||||
8 | "to write to.\n"; | ||||
9 | return 1; | ||||
10 | } | ||||
11 | ::y2019::vision::DumpCameraConstants(argv[1], -1, {}); | ||||
12 | } |