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
Main Repositories
otb
Commits
c6eef434
Commit
c6eef434
authored
10 years ago
by
Julien Michel
Browse files
Options
Downloads
Patches
Plain Diff
ENH: Enhance p to xs registration formula
parent
3c7e4f93
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/Projections/otbPleiadesPToXSAffineTransformCalculator.cxx
+13
-11
13 additions, 11 deletions
...Projections/otbPleiadesPToXSAffineTransformCalculator.cxx
with
13 additions
and
11 deletions
Code/Projections/otbPleiadesPToXSAffineTransformCalculator.cxx
+
13
−
11
View file @
c6eef434
...
...
@@ -126,26 +126,28 @@ PleiadesPToXSAffineTransformCalculator
// Compute shift between MS and P (in Pan pixels)
// in order to keep the top left corners unchanged, apply an
// additional offset of (3/2) panchro pixels, or 0.375 xs pixels
int
lineShift_MS_P
=
int
(
vcl_floor
((
timeDelta
/
(
linePeriodPan
/
1000
))
+
0.5
))
+
0.375
;
int
colShift_MS_P
=
colStartXS
*
4
-
colStartPan
-
4
+
0.375
;
// additional offset of (3/2) panchro pixels
std
::
cout
<<
timeDelta
/
(
linePeriodPan
/
1000
)
<<
std
::
endl
;
double
lineShift_MS_P
=
(
timeDelta
/
(
linePeriodPan
/
1000
))
-
1.5
;
double
colShift_MS_P
=
((
colStartXS
)
*
4
-
colStartPan
)
-
1.5
;
// Apply the scaling
typedef
itk
::
ScalableAffineTransform
<
double
,
2
>
TransformType
;
TransformType
::
Pointer
transform
=
TransformType
::
New
();
transform
->
S
cale
(
4.0
);
transform
->
S
etIdentity
(
);
// Apply the offset
TransformType
::
OutputVectorType
offset
;
offset
[
0
]
=
static_cast
<
double
>
(
colShift_MS_P
);
offset
[
1
]
=
static_cast
<
double
>
(
lineShift_MS_P
);
// Y axis inverted
offset
[
1
]
=
static_cast
<
double
>
(
-
lineShift_MS_P
);
transform
->
Translate
(
offset
);
// Invert the transform to get the P to XS transform
TransformType
::
Pointer
realTransform
=
TransformType
::
New
();
transform
->
GetInverse
(
realTransform
);
return
realTransform
;
transform
->
Scale
(
0.25
);
// Invert the transform to get the P to XS transform
return
transform
;
}
}
// End namespace otb
...
...
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