Visual Servoing Platform  version 3.0.1
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
tutorial-image-reader.cpp
#include <visp3/io/vpImageIo.h>
int main()
{
try {
vpImageIo::read(I, "monkey.jpeg");
vpImageIo::write(I, "monkey.png");
}
catch(vpException &e) {
std::cout << e.getMessage() << std::endl;
}
catch(...) {
std::cout << "Unsupported image format" << std::endl;
}
}