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
a26d83a7
Commit
a26d83a7
authored
17 years ago
by
Emmanuel Christophe
Browse files
Options
Downloads
Patches
Plain Diff
Ajout des explications pour une zone autre que Toulouse... (ou France)
parent
582d466e
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
Examples/Projections/OrthoRectificationExample.cxx
+19
-1
19 additions, 1 deletion
Examples/Projections/OrthoRectificationExample.cxx
with
19 additions
and
1 deletion
Examples/Projections/OrthoRectificationExample.cxx
+
19
−
1
View file @
a26d83a7
...
...
@@ -134,12 +134,30 @@ int main( int argc, char* argv[] )
OrthoRectifFilterType
::
Pointer
orthoRectifFilter
=
OrthoRectifFilterType
::
New
();
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
//
// If your image is not in Toulouse (in region 31 to be exact), you need to
// instanciate the map projection, set the {\em zone} and {\em hemisphere}
// parameters and pass this projection to the orthorectification filter.
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
utmMapProjectionType
::
Pointer
utmMapProjection
=
utmMapProjectionType
::
New
();
utmMapProjection
->
SetZone
(
31
);
utmMapProjection
->
SetHemisphere
(
'N'
);
orthoRectifFilter
->
SetMapProjection
(
utmMapProjection
);
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
//
// Since the size of the outpu image will be fixed by the user and we
// Since the size of the outpu
t
image will be fixed by the user and we
// are working with a stream-capable, synchronized pipeline, the
// ortho-rectification filter needs to know the input image size
// before the reader actually accesses the pixels. In order to make
...
...
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