cvv.hpp 742 B

1234567891011121314151617181920212223242526
  1. #ifndef __OPENCV_CVV_HPP__
  2. #define __OPENCV_CVV_HPP__
  3. /**
  4. @defgroup cvv GUI for Interactive Visual Debugging of Computer Vision Programs
  5. Namespace for all functions is **cvv**, i.e. *cvv::showImage()*.
  6. Compilation:
  7. - For development, i.e. for cvv GUI to show up, compile your code using cvv with
  8. *g++ -DCVVISUAL_DEBUGMODE*.
  9. - For release, i.e. cvv calls doing nothing, compile your code without above flag.
  10. See cvv tutorial for a commented example application using cvv.
  11. */
  12. #include <opencv2/cvv/call_meta_data.hpp>
  13. #include <opencv2/cvv/debug_mode.hpp>
  14. #include <opencv2/cvv/dmatch.hpp>
  15. #include <opencv2/cvv/filter.hpp>
  16. #include <opencv2/cvv/final_show.hpp>
  17. #include <opencv2/cvv/show_image.hpp>
  18. #endif //__OPENCV_CVV_HPP__