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
0c0ac256
Commit
0c0ac256
authored
10 years ago
by
Julien Michel
Browse files
Options
Downloads
Patches
Plain Diff
WRG: Fixing shadowed typedef declaration warning
parent
c4a330f8
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
Modules/Applications/AppFusion/app/otbBundleToPerfectSensor.cxx
+3
-3
3 additions, 3 deletions
...s/Applications/AppFusion/app/otbBundleToPerfectSensor.cxx
with
3 additions
and
3 deletions
Modules/Applications/AppFusion/app/otbBundleToPerfectSensor.cxx
+
3
−
3
View file @
0c0ac256
...
...
@@ -120,7 +120,7 @@ private:
}
// Transform the PAN image to otb::Image
typedef
otb
::
Image
<
FloatVectorImageType
::
InternalPixelType
>
Float
ImageType
;
typedef
otb
::
Image
<
FloatVectorImageType
::
InternalPixelType
>
Internal
ImageType
;
typedef
otb
::
MultiToMonoChannelExtractROI
<
float
,
float
>
ExtractFilterType
;
ExtractFilterType
::
Pointer
channelSelect
=
ExtractFilterType
::
New
();
...
...
@@ -128,12 +128,12 @@ private:
channelSelect
->
SetChannel
(
1
);
channelSelect
->
SetInput
(
panchroV
);
channelSelect
->
UpdateOutputInformation
();
Float
ImageType
::
Pointer
panchro
=
channelSelect
->
GetOutput
();
Internal
ImageType
::
Pointer
panchro
=
channelSelect
->
GetOutput
();
typedef
otb
::
BCOInterpolateImageFunction
<
FloatVectorImageType
>
InterpolatorType
;
typedef
otb
::
GenericRSResampleImageFilter
<
FloatVectorImageType
,
FloatVectorImageType
>
ResamplerType
;
typedef
otb
::
StreamingResampleImageFilter
<
FloatVectorImageType
,
FloatVectorImageType
>
BasicResamplerType
;
typedef
otb
::
SimpleRcsPanSharpeningFusionImageFilter
<
Float
ImageType
,
FloatVectorImageType
,
FloatVectorImageType
>
FusionFilterType
;
typedef
otb
::
SimpleRcsPanSharpeningFusionImageFilter
<
Internal
ImageType
,
FloatVectorImageType
,
FloatVectorImageType
>
FusionFilterType
;
// Resample filter
ResamplerType
::
Pointer
resampler
=
ResamplerType
::
New
();
...
...
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