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
Container Registry
Model registry
Operate
Environments
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
Antoine Belvire
otb
Commits
8919a3bc
Commit
8919a3bc
authored
9 years ago
by
Rashad Kanavath
Browse files
Options
Downloads
Patches
Plain Diff
BUG: deactivate two convolution tests if ITK_USE_FFTWD is not set
parent
556ca861
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
Modules/Filtering/Convolution/test/CMakeLists.txt
+3
-0
3 additions, 0 deletions
Modules/Filtering/Convolution/test/CMakeLists.txt
Modules/Filtering/Convolution/test/otbConvolutionTestDriver.cxx
+2
-0
2 additions, 0 deletions
...s/Filtering/Convolution/test/otbConvolutionTestDriver.cxx
with
5 additions
and
0 deletions
Modules/Filtering/Convolution/test/CMakeLists.txt
+
3
−
0
View file @
8919a3bc
...
...
@@ -32,6 +32,7 @@ otb_add_test(NAME bfTuConvolutionImageFilterNew COMMAND otbConvolutionTestDriver
otb_add_test
(
NAME bfTuOverlapSaveConvolutionImageFilterNew COMMAND otbConvolutionTestDriver
otbOverlapSaveConvolutionImageFilterNew
)
if
(
ITK_USE_FFTWD
)
otb_add_test
(
NAME bfTvOverlapSaveConvolutionImageFilter COMMAND otbConvolutionTestDriver
--compare-image
${
EPSILON_7
}
${
BASELINE
}
/bfTvConvolutionImageFilter.tif
...
...
@@ -55,6 +56,8 @@ otb_add_test(NAME bfTvCompareOverlapSaveAndClassicalConvolutionWithGaborFilter C
0.0125 0.0125
#u0 v0
0
)
endif
()
otb_add_test
(
NAME bfTvGaborFilterGenerator COMMAND otbConvolutionTestDriver
--compare-image
${
EPSILON_7
}
${
BASELINE
}
/bfGaborFilterGeneratorTest.tif
...
...
This diff is collapsed.
Click to expand it.
Modules/Filtering/Convolution/test/otbConvolutionTestDriver.cxx
+
2
−
0
View file @
8919a3bc
...
...
@@ -4,8 +4,10 @@ void RegisterTests()
REGISTER_TEST
(
otbConvolutionImageFilter
);
REGISTER_TEST
(
otbConvolutionImageFilterNew
);
REGISTER_TEST
(
otbOverlapSaveConvolutionImageFilterNew
);
#if defined(ITK_USE_FFTWD)
REGISTER_TEST
(
otbOverlapSaveConvolutionImageFilter
);
REGISTER_TEST
(
otbCompareOverlapSaveAndClassicalConvolutionWithGaborFilter
);
#endif
REGISTER_TEST
(
otbGaborFilterGenerator
);
REGISTER_TEST
(
otbGaborFilterGeneratorNew
);
}
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