final_show.hpp 774 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. #ifndef CVVISUAL_FINAL_SHOW_HPP
  2. #define CVVISUAL_FINAL_SHOW_HPP
  3. #include "opencv2/core.hpp"
  4. #include "debug_mode.hpp"
  5. namespace cvv
  6. {
  7. //! @addtogroup cvv
  8. //! @{
  9. namespace impl
  10. {
  11. CV_EXPORTS void finalShow();
  12. }
  13. /** @brief Passes the control to the debug-window for a last time.
  14. This function **must** be called *once* *after* all cvv calls if any. As an alternative create an
  15. instance of FinalShowCaller, which calls finalShow() in its destructor (RAII-style).
  16. */
  17. inline void finalShow()
  18. {
  19. #ifdef CVVISUAL_DEBUGMODE
  20. if (debugMode())
  21. {
  22. impl::finalShow();
  23. }
  24. #endif
  25. }
  26. /**
  27. * @brief RAII-class to call finalShow() in it's dtor.
  28. */
  29. class FinalShowCaller
  30. {
  31. public:
  32. /**
  33. * @brief Calls finalShow().
  34. */
  35. ~FinalShowCaller()
  36. {
  37. finalShow();
  38. }
  39. };
  40. //! @}
  41. }
  42. #endif