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
b413ea47
Commit
b413ea47
authored
10 years ago
by
Christophe Palmann
Browse files
Options
Downloads
Patches
Plain Diff
COMP: otbBandMathImageFilterX.cxx : problematic typename removed
parent
4a1ba594
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
Testing/Code/BasicFilters/otbBandMathImageFilterX.cxx
+15
-15
15 additions, 15 deletions
Testing/Code/BasicFilters/otbBandMathImageFilterX.cxx
with
15 additions
and
15 deletions
Testing/Code/BasicFilters/otbBandMathImageFilterX.cxx
+
15
−
15
View file @
b413ea47
...
...
@@ -139,10 +139,10 @@ int otbBandMathImageFilterX( int itkNotUsed(argc), char* itkNotUsed(argv) [])
double
expected1
=
vcl_cos
(
2
*
otb
::
CONST_PI
*
px1
[
0
]
)
/
(
2
*
otb
::
CONST_PI
*
px2
[
0
]
)
*
vcl_sin
(
otb
::
CONST_PI
*
px3
[
0
]
);
double
expected2
=
vcl_cos
(
2
*
otb
::
CONST_PI
*
px1
[
1
]
)
/
(
2
*
otb
::
CONST_PI
*
px2
[
0
]
)
*
vcl_sin
(
otb
::
CONST_PI
*
px3
[
0
]
);
double
expected3
=
vcl_cos
(
2
*
otb
::
CONST_PI
*
px1
[
2
]
)
/
(
2
*
otb
::
CONST_PI
*
px2
[
0
]
)
*
vcl_sin
(
otb
::
CONST_PI
*
px3
[
0
]
);
double
expected3
=
vcl_cos
(
2
*
otb
::
CONST_PI
*
px1
[
2
]
)
/
(
2
*
otb
::
CONST_PI
*
px2
[
0
]
)
*
vcl_sin
(
otb
::
CONST_PI
*
px3
[
0
]
);
/*std::cout << "Pixel_1 = " << it1.Get()[0] << " Pixel_2 = " << it2.Get()[0] << " Pixel_3 = " << it3.Get()[0]
<< " Result = " << itoutput1.Get()[0] << " Expected = " << expected1 << std::endl;
*/
<< " Result = " << itoutput1.Get()[0] << " Expected = " << expected1 << std::endl;*/
error1
=
(
result1
-
expected1
)
*
(
result1
-
expected1
)
/
(
result1
+
expected1
);
...
...
@@ -157,7 +157,7 @@ int otbBandMathImageFilterX( int itkNotUsed(argc), char* itkNotUsed(argv) [])
<<
" Pixel_2 = "
<<
it2
.
Get
()[
0
]
<<
" Pixel_3 = "
<<
it3
.
Get
()[
0
]
<<
" Result = "
<<
result1
<<
" Expected = "
<<
expected1
<<
std
::
endl
<<
" Expected = "
<<
expected1
<<
std
::
endl
<<
"Error = "
<<
error2
<<
" > 1E-9 -> TEST FAILLED"
<<
std
::
endl
<<
"Pixel_1 = "
<<
it1
.
Get
()[
1
]
<<
" Pixel_2 = "
<<
it2
.
Get
()[
0
]
...
...
@@ -190,7 +190,7 @@ int otbBandMathImageFilterX( int itkNotUsed(argc), char* itkNotUsed(argv) [])
<<
"
\n
Error > Bad Edge Effect Handling -> Test Failled
\n
"
<<
"Pixel_1 = "
<<
it1
.
Get
()
<<
" Pixel_2 = "
<<
it2
.
Get
()
<<
" Result = "
<<
itoutput2
.
Get
()
<<
" Expected = nan
\n
"
);
std
::
cout
<<
std
::
endl
;
std
::
cout
<<
std
::
endl
;
return
EXIT_SUCCESS
;
...
...
@@ -239,7 +239,7 @@ int otbBandMathImageFilterXConv( int itkNotUsed(argc), char* itkNotUsed(argv) []
image3
->
Allocate
();
typedef
itk
::
ConstNeighborhoodIterator
<
ImageType
>
IteratorType
;
typename
IteratorType
::
RadiusType
radius
;
IteratorType
::
RadiusType
radius
;
radius
[
0
]
=
1
;
// Size x direction
radius
[
1
]
=
2
;
// Size y direction
...
...
@@ -267,8 +267,8 @@ int otbBandMathImageFilterXConv( int itkNotUsed(argc), char* itkNotUsed(argv) []
filter
->
SetNthInput
(
0
,
image1
,
"imageA"
);
filter
->
SetNthInput
(
1
,
image2
);
filter
->
SetNthInput
(
2
,
image3
,
"canal3"
);
filter
->
SetMatrix
(
"kernel1"
,
"{ 0.1 , 0.2 , 0.3; 0.4 , 0.5 , 0.6; 0.7 , 0.8 , 0.9; 1.0 , 1.1 , 1.2; 1.3 , 1.4 , 1.5 }"
);
filter
->
SetExpression
(
"conv(kernel1,imageAb1N3x5,imageAb2N3x5)"
);
filter
->
SetMatrix
(
"kernel1"
,
"{ 0.1 , 0.2 , 0.3
; 0.4 , 0.5 , 0.6
; 0.7 , 0.8 , 0.9
; 1.0 , 1.1 , 1.2
; 1.3 , 1.4 , 1.5 }"
);
filter
->
SetExpression
(
"conv(kernel1,imageAb1N3x5,imageAb2N3x5)"
);
filter
->
Update
();
if
(
filter
->
GetNumberOfOutputs
()
!=
1
)
...
...
@@ -297,19 +297,19 @@ int otbBandMathImageFilterXConv( int itkNotUsed(argc), char* itkNotUsed(argv) []
float
coefs
[
15
]
=
{
0.1
,
0.2
,
0.3
,
0.4
,
0.5
,
0.6
,
0.7
,
0.8
,
0.9
,
1.0
,
1.1
,
1.2
,
1.3
,
1.4
,
1.5
};
px1
[
0
]
=
0
;
px1
[
0
]
=
0
;
for
(
int
i
=
0
;
i
<
it1
.
Size
();
++
i
)
px1
[
0
]
+=
coefs
[
i
]
*
it1
.
GetPixel
(
i
)[
0
];
px1
[
0
]
+=
coefs
[
i
]
*
it1
.
GetPixel
(
i
)[
0
];
px1
[
1
]
=
0
;
px1
[
1
]
=
0
;
for
(
int
i
=
0
;
i
<
it1
.
Size
();
++
i
)
px1
[
1
]
+=
coefs
[
i
]
*
it1
.
GetPixel
(
i
)[
1
];
px1
[
1
]
+=
coefs
[
i
]
*
it1
.
GetPixel
(
i
)[
1
];
double
result1
=
itoutput1
.
GetCenterPixel
()[
0
],
result2
=
itoutput1
.
GetCenterPixel
()[
1
];
double
error1
,
error2
;
double
error1
,
error2
;
double
expected1
=
px1
[
0
],
expected2
=
px1
[
1
];
...
...
@@ -317,14 +317,14 @@ int otbBandMathImageFilterXConv( int itkNotUsed(argc), char* itkNotUsed(argv) []
error2
=
(
result2
-
expected2
)
*
(
result2
-
expected2
)
/
(
result2
+
expected2
);
if
(
(
error1
>
1E-9
)
||
(
error2
>
1E-9
)
)
{
itkGenericExceptionMacro
(
{
itkGenericExceptionMacro
(
<<
"Error1 = "
<<
error1
<<
" > 1E-9 -> TEST FAILLED"
<<
std
::
endl
<<
" Result1 = "
<<
result1
<<
" Expected1 = "
<<
expected1
<<
std
::
endl
<<
"Error2 = "
<<
error2
<<
" > 1E-9 -> TEST FAILLED"
<<
std
::
endl
<<
" Result2 = "
<<
result2
<<
" Expected2 = "
<<
expected2
<<
std
::
endl
);
<<
" Expected2 = "
<<
expected2
<<
std
::
endl
);
}
}
...
...
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