Visual Servoing Platform
version 3.0.1
Main Page
Related Pages
Modules
Namespaces
Classes
Examples
All
Classes
Namespaces
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Groups
Pages
tutorial-image-reader.cpp
#include <visp3/io/vpImageIo.h>
int
main()
{
try
{
vpImage<vpRGBa>
I;
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;
}
}
Generated by
1.8.6