From 108e9f10c964e60fd57516a0c957cb15f9ddfd39 Mon Sep 17 00:00:00 2001 From: jgrewe Date: Tue, 8 Jul 2025 07:11:27 +0000 Subject: [PATCH] Update minimal_pylon.cpp --- minimal_pylon.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/minimal_pylon.cpp b/minimal_pylon.cpp index 1e66bf5..89e3561 100644 --- a/minimal_pylon.cpp +++ b/minimal_pylon.cpp @@ -60,7 +60,8 @@ int main( int argc, char* argv[] ) { << "\t --framecount|-n \t the number of frames, defaults to 100\n" << "\t --quality|-q \t the qualtiy of the compression (0 < q <= 100), defaults to 50\n" << "\t --index|-i \t the camera index, ignored if cameras > 1, defaults to 0\n" - << "\t --outfile|-o \t the output filename"; + << "\t --outfile|-o \t the output filename\n"; + return 0; } if ((arg == "--framecount" || arg == "-n") && i + 1 < argc) { frameCount = std::atoi(argv[++i]); @@ -219,7 +220,6 @@ int main( int argc, char* argv[] ) { } counter += 1; - std::cout << "." << std::flush; done = high_resolution_clock::now(); total_duration = duration_cast(done - before); }