Skip to content
Snippets Groups Projects
Commit 9c471ca6 authored by Rashad Kanavath's avatar Rashad Kanavath
Browse files

TEST: added new test for otbGreyLevelCooccurrenceIndexedList

parent 2fed225b
Branches
Tags
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 "itkMacro.h"
#include "otbGreyLevelCooccurrenceIndexedList.h"
int otbGreyLevelCooccurrenceIndexedListNew(int argc, char * argv[])
{
typedef float PixelType;
typedef otb::GreyLevelCooccurrenceIndexedList< PixelType > CooccurrenceIndexedListType;
CooccurrenceIndexedListType::Pointer lightObj = CooccurrenceIndexedListType::New();
std::cout << "Printing otb::GreyLevelCooccurrenceIndexedList: " << std::endl;
lightObj->Print( std::cout );
return EXIT_SUCCESS;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment