Skip to content
Snippets Groups Projects
Commit 21403a6a authored by Patrick Imbo's avatar Patrick Imbo
Browse files

ONERA

parent c9302f2b
No related branches found
No related tags found
No related merge requests found
// $Id$
#if defined(_MSC_VER)
#pragma warning ( disable : 4786 )
#endif
//#define MAIN
#include "otbONERAImageIO.h"
#include "itkExceptionObject.h"
#include <iostream>
int otbONERAImageIOTestCanRead(int argc, char* argv[])
{
try
{
otb::ONERAImageIO::Pointer lONERAImageIO = otb::ONERAImageIO::New();
bool lCanRead = lONERAImageIO->CanReadFile(argv[1]);
if ( lCanRead == false)
{
std::cerr << "Erreur otb::CAIImageIO : impossible d'ouvrir l'image "<<argv[1]<<"."<<std::endl;
return EXIT_FAILURE;
}
}
catch( itk::ExceptionObject & err )
{
std::cerr << "Exception OTB attrappee dans exception ITK !" << std::endl;
std::cerr << err << std::endl;
return EXIT_FAILURE;
}
catch( ... )
{
std::cerr << "Exception OTB non attrappee !" << std::endl;
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment