Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions 01_loadMeasurement_cpp/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,5 +92,6 @@ int main(int argc, char* argv[])

std::cout << lambda << "; " << value << std::endl;
}
cuvis::General::shutdown();
std::cout << "finished. " << std::endl;
}
1 change: 1 addition & 0 deletions 02_reprocessMeasurement_cpp/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,5 +104,6 @@ int main(int argc, char* argv[])
std::cout << "cannot process to mode " << mode.first << std::endl;
}
}
cuvis::General::shutdown();
std::cout << "finished." << std::endl;
}
1 change: 1 addition & 0 deletions 03_exportMeasurement_cpp/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,5 +104,6 @@ int main(int argc, char* argv[])
cuvis::CubeExporter exporter(saveArgs);
exporter.apply(mesu);
}
cuvis::General::shutdown();
std::cout << "finished." << std::endl;
}
1 change: 1 addition & 0 deletions 04_changeDistance_cpp/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,6 @@ int main(int argc, char* argv[])
proc.apply(mesu);
std::cout << "saving..." << std::endl;
exporter.apply(mesu);
cuvis::General::shutdown();
std::cout << "finished." << std::endl;
}
1 change: 1 addition & 0 deletions 05_recordSingleImages_cpp/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,5 +101,6 @@ int main(int argc, char* argv[])
}
*/

cuvis::General::shutdown();
std::cout << "finished." << std::endl;
}
1 change: 1 addition & 0 deletions 06_recordVideo_cpp/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,7 @@ int main(int argc, char* argv[])
std::cout << "acquisition stopped." << std::endl;
acq.set_continuous(false);
acq.reset_state_change_callback();
cuvis::General::shutdown();
cuvis::General::reset_log_callback();
std::cout << std::endl << "finished." << std::endl;
}
1 change: 1 addition & 0 deletions 07_recordVideoFromSessionFile_cpp/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -236,5 +236,6 @@ int main(int argc, char* argv[])
acq.set_continuous(false);
acq.reset_state_change_callback();
cuvis::General::reset_log_callback();
cuvis::General::shutdown();
std::cout << std::endl << "finished." << std::endl;
}