// The following example illustrates the use of the otb::DEMToImageGenerator class.
// The aim of this class is to generate an image from the srtm data (precising the start extraction
// latitude and longitude point). Each pixel is a geographic point and its intensity is
// the altitude of the point.
// If srtm doesn't have altitude information for a point, the altitude value is set at -32768 (value of the srtm norm).
//
// Let's look at the minimal code required to use this algorithm. First, the following header
// defining the \doxygen{otb}{DEMToImageGenerator} class must be included.
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
#include"otbDEMToImageGenerator.h"
// Software Guide : EndCodeSnippet
#include"itkExceptionObject.h"
#include"otbImageFileWriter.h"
#include"otbImage.h"
intmain(intargc,char*argv[])
{
if(argc<7)
{
std::cout<<argv[0]<<" folder path , output filename , X Output Orign point , Y Output Origin point , X Output Size, Y Output size , Spacing"<<std::endl;
returnEXIT_FAILURE;
}
// Software Guide : BeginLatex
//
// The image type is now defined using pixel type and
// dimension. The output image is defined as an \doxygen{otb}{Image}.
//
// Software Guide : EndLatex
char*folderPath=argv[1];
char*outputName=argv[2];
// Software Guide : BeginCodeSnippet
constunsignedintDimension=2;
typedefotb::Image<double,Dimension>ImageType;
// Software Guide : EndCodeSnippet
// The writer is defined
typedefotb::ImageFileWriter<ImageType>WriterType;
// Software Guide : BeginLatex
//
// The DEMToImageGenerator is defined using the image pixel
// type as a template parameter. After that, the object can be instancied.