Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
otb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
David Youssefi
otb
Commits
75ba055f
Commit
75ba055f
authored
17 years ago
by
Emmanuel Christophe
Browse files
Options
Downloads
Patches
Plain Diff
Ajout du test pour l'OrthoRectificationExample
parent
33752ec3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Examples/Projections/CMakeLists.txt
+37
-0
37 additions, 0 deletions
Examples/Projections/CMakeLists.txt
Examples/Projections/otbProjectionsExamplesTests.cxx
+34
-0
34 additions, 0 deletions
Examples/Projections/otbProjectionsExamplesTests.cxx
with
71 additions
and
0 deletions
Examples/Projections/CMakeLists.txt
+
37
−
0
View file @
75ba055f
...
...
@@ -10,9 +10,46 @@ IF(CMAKE_COMPILER_IS_GNUCXX)
ENDIF
(
CMAKE_COMPILER_IS_GNUCXX
)
SET
(
PROJECTIONS_EXAMPLES
${
CXX_TEST_PATH
}
/otbProjectionsExamplesTests
)
ADD_EXECUTABLE
(
SensorModelExample SensorModelExample.cxx
)
TARGET_LINK_LIBRARIES
(
SensorModelExample OTBProjections OTBCommon OTBIO ITKCommon ITKIO
)
ADD_EXECUTABLE
(
OrthoRectificationExample OrthoRectificationExample.cxx
)
TARGET_LINK_LIBRARIES
(
OrthoRectificationExample OTBProjections OTBCommon OTBIO ITKCommon ITKIO
)
IF
(
NOT OTB_DISABLE_CXX_TESTING AND NOT OTB_DISABLE_CXX_EXAMPLES_TESTING
)
SET
(
BASELINE
${
OTB_DATA_ROOT
}
/Baseline/Examples/Projections
)
SET
(
INPUTDATA
${
OTB_SOURCE_DIR
}
/Examples/Data
)
SET
(
INPUTLARGEDATA
${
OTB_DATA_ROOT
}
/LargeInput
)
SET
(
TEMP
${
OTB_BINARY_DIR
}
/Examples/Projections/Testing/Temporary
)
SET
(
EXE_TESTS
${
CXX_TEST_PATH
}
/otbProjectionsExamplesTests
)
SET
(
TOL 0.0
)
ADD_TEST
(
OrthoRectificationExampleTest
${
EXE_TESTS
}
--compare-image
${
TOL
}
${
BASELINE
}
/panOrthoToul.tif
${
TEMP
}
/panOrthoToul.tif
OrthoRectificationExampleTest
${
INPUTLARGEDATA
}
/TOULOUSE/QuickBird/000000128955_01_P001_PAN/02APR01105228-P1BS-000000128955_01_P001.TIF
${
TEMP
}
/panOrthoToul.tif
375000
4828100
500
500
0.6
-0.6
)
INCLUDE_DIRECTORIES
(
"
${
OTBTesting_BINARY_DIR
}
"
)
ADD_EXECUTABLE
(
otbProjectionsExamplesTests otbProjectionsExamplesTests.cxx
)
TARGET_LINK_LIBRARIES
(
otbProjectionsExamplesTests gdal ITKIO ITKAlgorithms ITKStatistics ITKNumerics ITKCommon OTBBasicFilters OTBCommon OTBDisparityMap OTBIO OTBSpatialReasoning OTBChangeDetection OTBFeatureExtraction OTBLearning OTBMultiScale OTBFusion OTBProjections
)
ENDIF
(
NOT OTB_DISABLE_CXX_TESTING AND NOT OTB_DISABLE_CXX_EXAMPLES_TESTING
)
This diff is collapsed.
Click to expand it.
Examples/Projections/otbProjectionsExamplesTests.cxx
+
34
−
0
View file @
75ba055f
/*=========================================================================
Program: ORFEO Toolbox
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
See OTBCopyright.txt for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
// this file defines the otbMultiScaleTest for the test driver
// and all it expects is that you have a function called RegisterTests
#if defined(_MSC_VER)
#pragma warning ( disable : 4786 )
#endif
#include
<iostream>
#include
"otbTestMain.h"
void
RegisterTests
()
{
REGISTER_TEST
(
OrthoRectificationExampleTest
);
}
#undef main
#define main OrthoRectificationExampleTest
#include
"OrthoRectificationExample.cxx"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment