ViSP  2.10.0
tutorial-image-viewer.cpp
#include <visp/vpDisplayGDI.h>
#include <visp/vpDisplayOpenCV.h>
#include <visp/vpDisplayX.h>
#include <visp/vpImageIo.h>
#include <visp/vpImagePoint.h>
int main()
{
try {
vpImageIo::read(I, "lena.ppm");
#if defined(VISP_HAVE_X11)
vpDisplayX d(I);
#elif defined(VISP_HAVE_GDI)
#elif defined(VISP_HAVE_OPENCV)
#else
std::cout << "No image viewer is available..." << std::endl;
#endif
vpDisplay::setTitle(I, "Lena");
vpDisplay::displayRectangle(I, vpImagePoint(90,90), 70, 90, vpColor::red, false, 2);
try {
vpImageIo::write(I, "lena-out.jpg");
vpImageIo::write(O, "lena-out-with-overlay.jpg");
}
catch(...) {
std::cout << "Cannot write the image: unsupported format..." << std::endl;
}
}
catch(vpException e) {
std::cout << "Catch an exception: " << e << std::endl;
}
}