Skip to content
Snippets Groups Projects
Commit fe7967c6 authored by Romain Garrigues's avatar Romain Garrigues
Browse files

Ajout du filtre de lecture/ecriture des shapefiles (encore en cours de développement)

Ajout de tests du répertoire Projections dans OTB-Applications
Ajout de fichiers en Baseline d'OTB-Applications pour les tests de non-régression du répertoire Projections
Ajout d'une option --OTB-Testing par défaut dans le otb::CommandLineArgumentParser (non visible par un usage())
Suppression du troisième paramètre template "bidon" dans otb::Image et otb::VectorImage
parent 3411dce4
No related branches found
No related tags found
No related merge requests found
......@@ -25,14 +25,14 @@ int main(int argc, char* argv[])
typedef otb::ImageViewerManager<PixelType> ManagerType;
ManagerType::Pointer manager = ManagerType::New();
manager->Show();
std::string strTest("--Test");
std::string strTest("--OTBTesting");
bool bFlRun(true);
for(int i = 1; i<argc;++i)
{
if( strTest.compare(argv[i])==0 )
{
std::cout << "--Test option. No FL::run() call !" << std::endl;
std::cout << "--OTBTesting option. No FL::run() call !" << std::endl;
bFlRun=false;
}
else
......
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