Skip to content
Snippets Groups Projects
Commit f39fc070 authored by Manuel Grizonnet's avatar Manuel Grizonnet
Browse files

ENH: move smoothing application to filtering directory

parent 9678ac1c
No related branches found
No related tags found
No related merge requests found
......@@ -2,4 +2,6 @@ OTB_CREATE_APPLICATION(NAME Despeckle
SOURCES otbDespeckle.cxx
LINK_LIBRARIES OTBIO;OTBCommon;OTBBasicFilters)
OTB_CREATE_APPLICATION(NAME Smoothing
SOURCES otbSmoothing.cxx
LINK_LIBRARIES OTBIO;OTBCommon;OTBBasicFilters)
......@@ -7,10 +7,6 @@ OTB_CREATE_APPLICATION(NAME Rescale
SOURCES otbRescale.cxx
LINK_LIBRARIES OTBIO;OTBCommon;OTBBasicFilters)
OTB_CREATE_APPLICATION(NAME Smoothing
SOURCES otbSmoothing.cxx
LINK_LIBRARIES OTBIO;OTBCommon;OTBBasicFilters)
OTB_CREATE_APPLICATION(NAME ReadImageInfo
SOURCES otbReadImageInfo.cxx
LINK_LIBRARIES OTBIO;OTBCommon;OTBBasicFilters)
......
......@@ -53,6 +53,7 @@ add_subdirectory(ChangeDetection)
add_subdirectory(Classification)
add_subdirectory(DisparityMap)
add_subdirectory(FeatureExtraction)
add_subdirectory(Filtering)
add_subdirectory(Fusion)
add_subdirectory(Hyperspectral)
add_subdirectory(Projections)
......
#--- Smoothing ---#
OTB_TEST_APPLICATION(NAME apTvUtSmoothingTest
APP Smoothing
OPTIONS -in ${INPUTDATA}/poupees.tif
-out ${TEMP}/apTvUtSmoothingTest.tif
-type mean
VALID --compare-image ${NOTOL}
${BASELINE}/apTvUtSmoothingTest.tif
${TEMP}/apTvUtSmoothingTest.tif)
OTB_TEST_APPLICATION(NAME apTvUtSmoothingTest_OutXML
APP Smoothing
OPTIONS -in ${INPUTDATA}/poupees.tif
-out ${TEMP}/apTvUtSmoothingTest_OutXML.tif
-type mean
-outxml ${TEMP}/apTvUtSmoothingTest_OutXML.xml
VALID --compare-image ${NOTOL}
${BASELINE}/apTvUtSmoothingTest.tif
${TEMP}/apTvUtSmoothingTest_OutXML.tif)
OTB_TEST_APPLICATION(NAME apTvUtSmoothingTest_InXML
APP Smoothing
OPTIONS -inxml ${INPUTDATA}/apTvUtSmoothingTest_OutXML.xml
-in ${INPUTDATA}/poupees.tif
-out ${TEMP}/apTvUtSmoothingTest_InXML.tif
-type mean
VALID --compare-image ${NOTOL}
${BASELINE}/apTvUtSmoothingTest.tif
${TEMP}/apTvUtSmoothingTest_InXML.tif)
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