Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Valentin Genin
diapotb
Commits
a4473bea
Commit
a4473bea
authored
Apr 08, 2020
by
Gaëlle USSEGLIO
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
STYLE : Remove unused ossim includes
parent
23fe04a9
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
97 deletions
+0
-97
include/otbSARCompensatedComplexImageFilter.txx
include/otbSARCompensatedComplexImageFilter.txx
+0
-2
include/otbSARESDOffsetsImageFilter.h
include/otbSARESDOffsetsImageFilter.h
+0
-62
include/otbSARESDOffsetsImageFilter.txx
include/otbSARESDOffsetsImageFilter.txx
+0
-10
include/otbSARInterferogramImageFilter.txx
include/otbSARInterferogramImageFilter.txx
+0
-2
include/otbSARTopographicPhaseImageFilter.txx
include/otbSARTopographicPhaseImageFilter.txx
+0
-2
include/otbSARUpdateMetadataImageFilter.h
include/otbSARUpdateMetadataImageFilter.h
+0
-19
No files found.
include/otbSARCompensatedComplexImageFilter.txx
View file @
a4473bea
...
...
@@ -29,8 +29,6 @@
#include "itkNumericTraitsPointPixel.h"
#include "itkContinuousIndex.h"
#include "ossim/ossimSarSensorModel.h"
#include <cmath>
#include <algorithm>
...
...
include/otbSARESDOffsetsImageFilter.h
View file @
a4473bea
...
...
@@ -29,25 +29,7 @@
#include "itkImageScanlineIterator.h"
#include "otbImageKeywordlist.h"
#include "otbSarSensorModelAdapter.h"
#if defined(__GNUC__) || defined(__clang__)
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wunused-parameter"
# pragma GCC diagnostic ignored "-Woverloaded-virtual"
# pragma GCC diagnostic ignored "-Wshadow"
# include "ossim/ossimTimeUtilities.h"
# pragma GCC diagnostic pop
#else
# include "ossim/ossimTimeUtilities.h"
#endif
#if defined(USE_BOOST_TIME)
# include <boost/date_time/posix_time/posix_time.hpp>
#include <ostream>
#endif
namespace
otb
{
...
...
@@ -102,50 +84,6 @@ public:
typedef
itk
::
ImageScanlineConstIterator
<
ImageType
>
InputIterator
;
typedef
itk
::
ImageScanlineIterator
<
ImageType
>
OutputIterator
;
#if defined(USE_BOOST_TIME)
typedef
boost
::
posix_time
::
ptime
TimeType
;
typedef
boost
::
posix_time
::
precise_duration
DurationType
;
#else
typedef
ossimplugins
::
time
::
ModifiedJulianDate
TimeType
;
typedef
ossimplugins
::
time
::
Duration
DurationType
;
#endif
// Struture declaration
struct
FMRateRecordType
{
TimeType
azimuthFMRateTime
;
double
coef0FMRate
;
double
coef1FMRate
;
double
coef2FMRate
;
double
tau0FMRate
;
friend
std
::
ostream
&
operator
<<
(
std
::
ostream
&
os
,
const
FMRateRecordType
&
v
)
{
return
os
<<
"{ azimuthFMRateTime: "
<<
v
.
azimuthFMRateTime
<<
", coefficient 0: "
<<
v
.
coef0FMRate
<<
", coefficient 1: "
<<
v
.
coef1FMRate
<<
",coefficient 2: "
<<
v
.
coef2FMRate
<<
",slant range time (tau 0): "
<<
v
.
tau0FMRate
<<
"}"
;
}
};
struct
DCFRecordType
{
TimeType
azimuthDCFTime
;
double
coef0DCF
;
double
coef1DCF
;
double
coef2DCF
;
double
tau0DCF
;
friend
std
::
ostream
&
operator
<<
(
std
::
ostream
&
os
,
const
DCFRecordType
&
v
)
{
return
os
<<
"{ azimuthDCFTime: "
<<
v
.
azimuthDCFTime
<<
", coefficient 0: "
<<
v
.
coef0DCF
<<
", coefficient 1: "
<<
v
.
coef1DCF
<<
",coefficient 2: "
<<
v
.
coef2DCF
<<
",slant range time (tau 0): "
<<
v
.
tau0DCF
<<
"}"
;
}
};
// Setter
itkSetMacro
(
PhaseDiffMean
,
float
);
...
...
include/otbSARESDOffsetsImageFilter.txx
View file @
a4473bea
...
...
@@ -28,19 +28,9 @@
#include "itkProgressReporter.h"
#include "itkNumericTraitsPointPixel.h"
#include "otbSarSensorModelAdapter.h"
#include <cmath>
#include <algorithm>
#if defined(USE_BOOST_TIME)
using boost::posix_time::microseconds;
using boost::posix_time::seconds;
#else
using ossimplugins::time::microseconds;
using ossimplugins::time::seconds;
#endif
namespace otb
{
/**
...
...
include/otbSARInterferogramImageFilter.txx
View file @
a4473bea
...
...
@@ -29,8 +29,6 @@
#include "itkNumericTraitsPointPixel.h"
#include "itkContinuousIndex.h"
#include "ossim/ossimSarSensorModel.h"
#include <cmath>
#include <algorithm>
...
...
include/otbSARTopographicPhaseImageFilter.txx
View file @
a4473bea
...
...
@@ -28,8 +28,6 @@
#include "itkProgressReporter.h"
#include "itkNumericTraitsPointPixel.h"
#include "ossim/ossimSarSensorModel.h"
#include <cmath>
#include <algorithm>
...
...
include/otbSARUpdateMetadataImageFilter.h
View file @
a4473bea
...
...
@@ -29,25 +29,6 @@
#include "itkImageScanlineIterator.h"
#include "otbImageKeywordlist.h"
#include "otbSarSensorModelAdapter.h"
#if defined(__GNUC__) || defined(__clang__)
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wunused-parameter"
# pragma GCC diagnostic ignored "-Woverloaded-virtual"
# pragma GCC diagnostic ignored "-Wshadow"
# include "ossim/ossimTimeUtilities.h"
# pragma GCC diagnostic pop
#else
# include "ossim/ossimTimeUtilities.h"
#endif
#if defined(USE_BOOST_TIME)
# include <boost/date_time/posix_time/posix_time.hpp>
#include <ostream>
#endif
namespace
otb
{
...
...
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