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
7a0300a5
Commit
7a0300a5
authored
16 years ago
by
Julien Michel
Browse files
Options
Downloads
Patches
Plain Diff
COMP: External apps did not know if FFTW was available, as a result the class was not compiling
parent
01934e4c
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Code/BasicFilters/otbOverlapSaveConvolutionImageFilter.txx
+6
-0
6 additions, 0 deletions
Code/BasicFilters/otbOverlapSaveConvolutionImageFilter.txx
with
6 additions
and
0 deletions
Code/BasicFilters/otbOverlapSaveConvolutionImageFilter.txx
+
6
−
0
View file @
7a0300a5
...
...
@@ -18,6 +18,8 @@
#ifndef __otbOverlapSaveConvolutionImageFilter_txx
#define __otbOverlapSaveConvolutionImageFilter_txx
#include "itkConfigure.h"
#include "otbOverlapSaveConvolutionImageFilter.h"
#include "itkConstNeighborhoodIterator.h"
...
...
@@ -93,6 +95,9 @@ OverlapSaveConvolutionImageFilter<TInputImage, TOutputImage>
e.SetDataObject(inputPtr);
throw e;
}
#else
itkGenericExceptionMacro(<<"The OverlapSaveConvolutionImageFilter can not operate without the FFTW library (double implementation). Please install it and set it up in the cmake configuration.");
#endif
}
template< class TInputImage, class TOutputImage>
...
...
@@ -102,6 +107,7 @@ OverlapSaveConvolutionImageFilter< TInputImage, TOutputImage>
* ::ThreadedGenerateData(const OutputImageRegionType& outputRegionForThread,int threadId) */
::GenerateData()
{
#if defined USE_FFTWD
// Input/Output pointers
typename OutputImageType::Pointer output = this->GetOutput();
typename InputImageType::ConstPointer input = this->GetInput();
...
...
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