Skip to content
Snippets Groups Projects
Commit baf337d4 authored by Grégoire Mercier's avatar Grégoire Mercier
Browse files

TEST: Box and Whisker (New)

parent a9db248c
Branches
Tags
No related merge requests found
......@@ -43,4 +43,5 @@ void RegisterTests()
REGISTER_TEST(otbAmplitudePhaseToRGBFunctor);
REGISTER_TEST(otbVarianceImageFilterNew);
REGISTER_TEST(otbVarianceImageFilter);
REGISTER_TEST(otbBoxAndWhiskerImageFilterNew);
}
/*=========================================================================
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;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment