MITK-IGT
IGT Extension of MITK
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
mitkEndoDebug.h File Reference
#include <set>
#include <string>
#include <iostream>
#include <sstream>
#include <MitkCameraCalibrationExports.h>

Go to the source code of this file.

Classes

struct  mitk::EndoDebug
 

Namespaces

namespace  mitk
 IGT Exceptions.
 

Macros

#define endodebugmarker
 
#define endodebug(msg)
 
#define endodebugvar(var)
 
#define endodebugsymbol(var, mSymbol)
 
#define endodebugimg(imgVariableName)
 
#define endodebugbegin
 
#define endodebugend    }
 
#define endodebugcode(code)
 
#define endoAssert(a)
 
#define endoAssertMsg(a, msg)
 
#define endoAssertCode(assertCode)
 

Macro Definition Documentation

◆ endoAssert

#define endoAssert ( a)
Value:
if(!(a)) { \
std::ostringstream s; \
<< __LINE__ << ", failed: " << #a; \
throw std::invalid_argument(s.str()); }
std::string GetFilenameWithoutExtension(const std::string &s)
static EndoDebug & GetInstance()

an assert macro for throwing exceptions from an assert

Definition at line 282 of file mitkEndoDebug.h.

◆ endoAssertCode

#define endoAssertCode ( assertCode)
Value:
assertCode

Definition at line 301 of file mitkEndoDebug.h.

◆ endoAssertMsg

#define endoAssertMsg ( a,
msg )
Value:
if(!(a)) { \
std::ostringstream s; \
<< __LINE__ << ": " << msg; \
throw std::invalid_argument(s.str()); \
}

same as above but with an output error stream use it like this: endoAssertMsg( file.read() == true, file << "could not be read" );

Definition at line 293 of file mitkEndoDebug.h.

◆ endodebug

#define endodebug ( msg)
Value:
if( mitk::EndoDebug::GetInstance().Debug(__FILE__) ) \
{ \
std::ostringstream ___ostringstream; \
___ostringstream << mitk::EndoDebug::GetInstance().GetFilenameWithoutExtension(__FILE__) << ", " << __LINE__\
<< ": " << msg << std::endl;\
mitk::EndoDebug::GetInstance().ShowMessage( ___ostringstream.str() ); \
}

macro for debugging purposes

Definition at line 202 of file mitkEndoDebug.h.

◆ endodebugbegin

#define endodebugbegin
Value:
if( mitk::EndoDebug::GetInstance().Debug(__FILE__) ) \
{

macro for a section that should only be executed if debugging is enabled

Definition at line 264 of file mitkEndoDebug.h.

◆ endodebugcode

#define endodebugcode ( code)
Value:
endodebugbegin \
code \
endodebugend

Definition at line 274 of file mitkEndoDebug.h.

◆ endodebugend

#define endodebugend    }

macro for a section that should only be executed if debugging is enabled

Definition at line 271 of file mitkEndoDebug.h.

◆ endodebugimg

#define endodebugimg ( imgVariableName)
Value:
if( mitk::EndoDebug::GetInstance().Debug(__FILE__) \
&& mitk::EndoDebug::GetInstance().GetShowImagesInDebug() \
&& (imgVariableName).cols > 0 && (imgVariableName).rows > 0 && (imgVariableName).data) \
{ \
std::ostringstream ___ostringstream; \
___ostringstream << mitk::EndoDebug::GetInstance().GetFilenameWithoutExtension(__FILE__) << ", " << __LINE__\
<< ": Showing " #imgVariableName << std::endl; \
mitk::EndoDebug::GetInstance().ShowMessage( ___ostringstream.str() ); \
if( !outputFile.empty() ) \
{\
outputFile = mitk::EndoDebug::GetInstance().GetUniqueFileName(outputFile, "jpg", std::string(#imgVariableName) );\
cv::imwrite(outputFile, imgVariableName);\
}\
else\
{\
cv::imshow( "Debug", imgVariableName ); \
cv::waitKey( mitk::EndoDebug::GetInstance().GetShowImagesTimeOut() ); \
}\
}
static std::string GetUniqueFileName(const std::string &dir, const std::string &ext="jpg", const std::string &prefix="")
std::string GetDebugImagesOutputDirectory() const

macro for showing cv image if in debug mode highgui.h must be included before

Definition at line 239 of file mitkEndoDebug.h.

◆ endodebugmarker

#define endodebugmarker
Value:
if( mitk::EndoDebug::GetInstance().Debug(__FILE__) ) \
{ \
std::ostringstream ___ostringstream; \
___ostringstream << mitk::EndoDebug::GetInstance().GetFilenameWithoutExtension(__FILE__) << ", " << __LINE__\
<< ": " << __FUNCTION__ << std::endl;\
mitk::EndoDebug::GetInstance().ShowMessage( ___ostringstream.str() ); \
}

macro for debugging purposes

Definition at line 190 of file mitkEndoDebug.h.

◆ endodebugsymbol

#define endodebugsymbol ( var,
mSymbol )
Value:
if( mitk::EndoDebug::GetInstance().Debug(__FILE__, mSymbol) ) \
{ \
std::ostringstream ___ostringstream; \
___ostringstream << mitk::EndoDebug::GetInstance().GetFilenameWithoutExtension(__FILE__) << ", " << __LINE__\
<< ": " #var " = " << var << std::endl;\
mitk::EndoDebug::GetInstance().ShowMessage( ___ostringstream.str() ); \
}

macro for debugging a variable as symbol

Definition at line 226 of file mitkEndoDebug.h.

◆ endodebugvar

#define endodebugvar ( var)
Value:
if( mitk::EndoDebug::GetInstance().Debug(__FILE__) ) \
{ \
std::ostringstream ___ostringstream; \
___ostringstream << mitk::EndoDebug::GetInstance().GetFilenameWithoutExtension(__FILE__) << ", " << __LINE__\
<< ": " #var " = " << var << std::endl;\
mitk::EndoDebug::GetInstance().ShowMessage( ___ostringstream.str() ); \
}

macro for debugging variables

Definition at line 214 of file mitkEndoDebug.h.