ViSP
2.9.0
Main Page
Related Pages
Modules
Classes
Examples
tutorial-image-reader.cpp
#include <visp/vpImageIo.h>
int
main()
{
try
{
vpImage<vpRGBa>
I;
vpImageIo::read
(I,
"lena.jpg"
);
vpImageIo::write
(I,
"lena.png"
);
}
catch
(
vpException
e) {
std::cout << e.
getMessage
() << std::endl;
}
catch
(...) {
std::cout <<
"Unsupported image format"
<< std::endl;
}
}
Generated on Wed Sep 2 2015 10:33:35 for ViSP by
1.8.9.1