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
9261e9db
Commit
9261e9db
authored
16 years ago
by
Julien Michel
Browse files
Options
Downloads
Patches
Plain Diff
DOC: Adding documentation for StreamingWarpImageFilter
parent
c0c976d6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Code/DisparityMap/otbStreamingWarpImageFilter.h
+15
-3
15 additions, 3 deletions
Code/DisparityMap/otbStreamingWarpImageFilter.h
with
15 additions
and
3 deletions
Code/DisparityMap/otbStreamingWarpImageFilter.h
+
15
−
3
View file @
9261e9db
...
...
@@ -25,9 +25,22 @@ namespace otb
{
/** \class StreamingWarpImageFilter
* \brief
* \brief
This class acts like the itk::WarpImageFilter, but it does not request the largest possible region of the image to warp.
*
* \TODO: Document
* Instead, the user should assess the maximum deformation in the deformation field and set it via the SetMaximumDeformation() method.
*
* The filter will then compute an appropriate security margin according to the image spacing, the maximum deformation and the interpolator
* radius in otb::StreamingTraits.
*
* This security margin is used to stream the input image, making this filter an entirely streamable one.
*
* If the maximum deformation is wrong, this filter is likely to request data outside of the input image buffered region. In this case, pixels
* outside the region will be set to Zero according to itk::NumericTraits.
*
* \sa itk::WarpImageFilter
*
* \ingroup Streamed
* \ingroup Threaded
*/
template
<
class
TInputImage
,
class
TOutputImage
,
class
TDeformationField
>
...
...
@@ -35,7 +48,6 @@ class ITK_EXPORT StreamingWarpImageFilter
:
public
itk
::
WarpImageFilter
<
TInputImage
,
TOutputImage
,
TDeformationField
>
{
public:
/** Standard class typedefs. */
typedef
StreamingWarpImageFilter
Self
;
typedef
itk
::
WarpImageFilter
<
TInputImage
,
TOutputImage
,
TDeformationField
>
Superclass
;
...
...
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