Skip to content
Snippets Groups Projects
Commit c5c57ce5 authored by Julien Michel's avatar Julien Michel
Browse files

TEST: (Visu Refactoring) Adding a blending image filter

parent 23cd9048
No related branches found
No related tags found
No related merge requests found
/*=========================================================================
Program: ORFEO Toolbox
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
See OTBCopyright.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 "otbBlendingImageFilter.h"
#include "otbImage.h"
#include "itkRGBPixel.h"
int otbBlendingImageFilterNew( int argc, char * argv[] )
{
typedef unsigned char ValueType;
typedef itk::RGBPixel<ValueType> PixelType;
typedef otb::Image<PixelType,2> ImageType;
typedef otb::BlendingImageFilter<ImageType> BlendingFilterType;
BlendingFilterType::Pointer rendering = BlendingFilterType::New();
return EXIT_SUCCESS;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment