From 3ab56e9e13fa5f8fba74f35c948a200d3f2f232d Mon Sep 17 00:00:00 2001 From: Thomas Boy <thomas-boy@idiv.de> Date: Mon, 27 Aug 2018 11:54:11 +0200 Subject: [PATCH] try to find exception place --- Demo.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Demo.cpp b/Demo.cpp index 30314a5..20829a7 100644 --- a/Demo.cpp +++ b/Demo.cpp @@ -15,6 +15,7 @@ based on original demo.cpp #define PROCESS_CENTER_VERSION_MAJOR 0 #define PROCESS_CENTER_VERSION_MINOR 9 +#define PROCESS_CENTER_VERSION_MINOR_FIXES 1 //opencv #include <opencv2/opencv.hpp> @@ -46,7 +47,7 @@ bool cmdOptionExists(char** begin, char** end, const std::string& option) int main(int argc, char * argv[]) { std::cout << "using processcenter " <<PROCESS_CENTER_VERSION_MAJOR <<"."<< PROCESS_CENTER_VERSION_MINOR << endl; - std::cout << "Using OpenCV " << CV_MAJOR_VERSION << "." << CV_MINOR_VERSION << "." << CV_SUBMINOR_VERSION << std::endl; + std::cout << "Using OpenCV " << CV_MAJOR_VERSION << "." << CV_MINOR_VERSION << "." << CV_SUBMINOR_VERSION <<"."<<PROCESS_CENTER_VERSION_MINOR_FIXES<< std::endl; //!** parse programm input****************/ if(cmdOptionExists(argv, argv+argc, "-h")) { @@ -508,6 +509,7 @@ int main(int argc, char * argv[]) #endif + cout<<"we try to write file: "<< i <<endl; //! step 8: we write down all our results in yml file std::string nameOutPutFileData = outputDir + TToolBox::mNzero(frameCounter) + ".yml"; -- GitLab