Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Main Repositories
otb
Commits
ce45e212
Commit
ce45e212
authored
Mar 24, 2020
by
Cédric Traizet
Browse files
ENH: replace typedef with using in PantexTextureExtraction
parent
71abd713
Pipeline
#4055
failed with stages
in 106 minutes and 47 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Modules/Applications/AppTextures/app/otbPantexTextureExtraction.cxx
View file @
ce45e212
...
...
@@ -37,10 +37,10 @@ public:
/** @name Standard class typedefs
* @{
*/
typedef
PantexTextureExtraction
Self
;
typedef
Application
Superclass
;
typedef
itk
::
SmartPointer
<
Self
>
Pointer
;
typedef
itk
::
SmartPointer
<
const
Self
>
ConstPointer
;
using
Self
=
PantexTextureExtraction
;
using
Superclass
=
Application
;
using
Pointer
=
itk
::
SmartPointer
<
Self
>
;
using
ConstPointer
=
itk
::
SmartPointer
<
const
Self
>
;
/** @} */
/** @name Standard macro
...
...
@@ -50,10 +50,10 @@ public:
itkTypeMacro
(
PantexTextureExtraction
,
otb
::
Application
);
/** @} */
typedef
otb
::
MultiToMonoChannelExtractROI
<
FloatVectorImageType
::
InternalPixelType
,
FloatVectorImageType
::
InternalPixelType
>
ExtractorFilterType
;
typedef
otb
::
ScalarImageToPanTexTextureFilter
<
FloatImageType
,
FloatImageType
>
PanTexTextureFilterType
;
typedef
otb
::
StreamingMinMaxImageFilter
<
FloatImageType
>
MinMaxImageFilterType
;
using
ExtractorFilterType
=
otb
::
MultiToMonoChannelExtractROI
<
FloatVectorImageType
::
InternalPixelType
,
FloatVectorImageType
::
InternalPixelType
>
;
using
PanTexTextureFilterType
=
otb
::
ScalarImageToPanTexTextureFilter
<
FloatImageType
,
FloatImageType
>
;
using
MinMaxImageFilterType
=
otb
::
StreamingMinMaxImageFilter
<
FloatImageType
>
;
private:
void
DoInit
()
override
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment