blob: b8f4503fe25dce5ebb4ee141e99d006ee508bc17 [file] [log] [blame]
James Kuszmaule2c71ea2019-03-04 08:14:21 -08001#include <iostream>
2
Philipp Schrader790cb542023-07-05 21:06:52 -07003#include "y2019/vision/constants.h"
4
James Kuszmaule2c71ea2019-03-04 08:14:21 -08005int 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}