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
David Youssefi
otb
Commits
baf337d4
Commit
baf337d4
authored
15 years ago
by
Grégoire Mercier
Browse files
Options
Downloads
Patches
Plain Diff
TEST: Box and Whisker (New)
parent
a9db248c
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Testing/Code/BasicFilters/otbBasicFiltersTests8.cxx
+1
-0
1 addition, 0 deletions
Testing/Code/BasicFilters/otbBasicFiltersTests8.cxx
Testing/Code/BasicFilters/otbBoxAndWhiskerImageFilterNew.cxx
+39
-0
39 additions, 0 deletions
Testing/Code/BasicFilters/otbBoxAndWhiskerImageFilterNew.cxx
with
40 additions
and
0 deletions
Testing/Code/BasicFilters/otbBasicFiltersTests8.cxx
+
1
−
0
View file @
baf337d4
...
...
@@ -43,4 +43,5 @@ void RegisterTests()
REGISTER_TEST
(
otbAmplitudePhaseToRGBFunctor
);
REGISTER_TEST
(
otbVarianceImageFilterNew
);
REGISTER_TEST
(
otbVarianceImageFilter
);
REGISTER_TEST
(
otbBoxAndWhiskerImageFilterNew
);
}
This diff is collapsed.
Click to expand it.
Testing/Code/BasicFilters/otbBoxAndWhiskerImageFilterNew.cxx
0 → 100644
+
39
−
0
View file @
baf337d4
/*=========================================================================
Program: ORFEO Toolbox
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
See OTBCopyright.txt for details.
Copyright (c) Institut Telecom; Telecom Bretagne. All rights reserved.
See ITCopyright.txt for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#include
<iostream>
#include
<cstdlib>
#include
"otbVectorImage.h"
#include
"otbBoxAndWhiskerImageFilter.h"
int
otbBoxAndWhiskerImageFilterNew
(
int
argc
,
char
*
argv
[]
)
{
const
unsigned
int
Dimension
=
2
;
typedef
double
PixelType
;
typedef
otb
::
VectorImage
<
PixelType
,
Dimension
>
ImageType
;
typedef
otb
::
BoxAndWhiskerImageFilter
<
ImageType
>
FilterType
;
FilterType
::
Pointer
filter
=
FilterType
::
New
();
return
EXIT_SUCCESS
;
}
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