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
Julien Cabieces
otb
Commits
9e2d81af
Commit
9e2d81af
authored
12 years ago
by
Manuel Grizonnet
Browse files
Options
Downloads
Patches
Plain Diff
ITK4: use otb::WarpImageFilter
parent
3fb8fb60
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Code/DisparityMap/otbStreamingWarpImageFilter.h
+5
-5
5 additions, 5 deletions
Code/DisparityMap/otbStreamingWarpImageFilter.h
with
5 additions
and
5 deletions
Code/DisparityMap/otbStreamingWarpImageFilter.h
+
5
−
5
View file @
9e2d81af
...
...
@@ -18,14 +18,14 @@
#ifndef __otbStreamingWarpImageFilter_h
#define __otbStreamingWarpImageFilter_h
#include
"
itk
WarpImageFilter.h"
#include
"
otb
WarpImageFilter.h"
#include
"otbStreamingTraits.h"
namespace
otb
{
/** \class StreamingWarpImageFilter
* \brief This class acts like the
itk
::WarpImageFilter, but it does not request the largest possible region of the image to warp.
* \brief This class acts like the
otb
::WarpImageFilter, but it does not request the largest possible region of the image to warp.
*
* Instead, the user should assess the maximum deformation in the deformation field and set it via the SetMaximumDeformation() method.
*
...
...
@@ -45,12 +45,12 @@ namespace otb
template
<
class
TInputImage
,
class
TOutputImage
,
class
TDeformationField
>
class
ITK_EXPORT
StreamingWarpImageFilter
:
public
itk
::
WarpImageFilter
<
TInputImage
,
TOutputImage
,
TDeformationField
>
:
public
otb
::
WarpImageFilter
<
TInputImage
,
TOutputImage
,
TDeformationField
>
{
public:
/** Standard class typedefs. */
typedef
StreamingWarpImageFilter
Self
;
typedef
itk
::
WarpImageFilter
<
TInputImage
,
TOutputImage
,
TDeformationField
>
Superclass
;
typedef
otb
::
WarpImageFilter
<
TInputImage
,
TOutputImage
,
TDeformationField
>
Superclass
;
typedef
itk
::
SmartPointer
<
Self
>
Pointer
;
typedef
itk
::
SmartPointer
<
const
Self
>
ConstPointer
;
...
...
@@ -90,7 +90,7 @@ protected:
* produce its output. As such, we need to overload the GenerateInputRequestedRegion() method.
*/
virtual
void
GenerateInputRequestedRegion
();
/**
* Re-implement the method ThreadedGenerateData to mask area outside the deformation grid
*/
...
...
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