Read images on the disk.
#include <visp3/core/vpImage.h>
#include <visp3/io/vpImageIo.h>
#include <visp3/core/vpIoTools.h>
#include <visp3/io/vpParseArgv.h>
#include <visp3/core/vpDebug.h>
#include <stdlib.h>
#define GETOPTARGS "cdi:p:h"
void usage(const char *name, const char *badparam, std::string ipath);
bool getOptions(int argc, const char **argv, std::string &ipath, std::string &ppath);
void usage(const char *name, const char *badparam, std::string ipath)
{
fprintf(stdout, "\n\
Read images on the disk.\n\
\n\
SYNOPSIS\n\
%s [-i <input image path>] [-p <personal image path>]\n\
[-h]\n \
", name);
fprintf(stdout, "\n\
OPTIONS: Default\n\
-i <input image path> %s\n\
Set image input path.\n\
From this path read \"ViSP-images/Klimt/Klimt.pgm,\n\
.ppm, .jpeg and .png images.\n\
Setting the VISP_INPUT_IMAGE_PATH environment\n\
variable produces the same behaviour than using\n\
this option.\n\
\n\
-p <personal image path> \n\
Path to an image used to test image reading function.\n\
Example: -p /my_path_to/image.png\n\
\n\
-h\n\
Print the help.\n\n",
ipath.c_str());
if (badparam)
fprintf(stdout, "\nERROR: Bad parameter [%s]\n", badparam);
}
bool getOptions(int argc, const char **argv, std::string &ipath, std::string &ppath)
{
const char *optarg_;
int c;
switch (c) {
case 'i': ipath = optarg_; break;
case 'p': ppath = optarg_; break;
case 'h': usage(argv[0], NULL, ipath); return false; break;
case 'c':
case 'd':
break;
default:
usage(argv[0], optarg_, ipath); return false; break;
}
}
if ((c == 1) || (c == -1)) {
usage(argv[0], NULL, ipath);
std::cerr << "ERROR: " << std::endl;
std::cerr << " Bad argument " << optarg_ << std::endl << std::endl;
return false;
}
return true;
}
int
main(int argc, const char ** argv)
{
try {
std::string env_ipath;
std::string opt_ipath;
std::string opt_ppath;
std::string ipath;
std::string filename;
if (! env_ipath.empty())
ipath = env_ipath;
if (getOptions(argc, argv, opt_ipath, opt_ppath) == false) {
exit (-1);
}
if (!opt_ipath.empty())
ipath = opt_ipath;
if (!opt_ipath.empty() && !env_ipath.empty()) {
if (ipath != env_ipath) {
std::cout << std::endl
<< "WARNING: " << std::endl;
std::cout << " Since -i <visp image path=" << ipath << "> "
<< " is different from VISP_IMAGE_PATH=" << env_ipath << std::endl
<< " we skip the environment variable." << std::endl;
}
}
if (opt_ppath.empty())
{
printf("Read ppm ok\n");
printf("Read pgm ok\n");
printf("Read jpeg ok\n");
printf("Read png ok\n");
printf("Read ppm ok\n");
printf("Read pgm ok\n");
printf("Read jpeg ok\n");
printf("Read png ok\n");
}
else
{
filename = opt_ppath;
printf("Image \"%s\" read successfully\n", filename.c_str());
}
}
std::cout <<
"Catch an exception: " << e.
getMessage() << std::endl;
}
return 0;
}