Skip to content
Snippets Groups Projects
Commit 7433ebb0 authored by Jonathan Guinet's avatar Jonathan Guinet
Browse files

DOC: LAI From NDVI code example.

parent 09835af7
No related branches found
No related tags found
No related merge requests found
......@@ -9,9 +9,15 @@ ADD_EXECUTABLE(ProsailModel ProsailModel.cxx )
TARGET_LINK_LIBRARIES(ProsailModel OTBSimulation)
ADD_EXECUTABLE(LAIFromNDVIImageTransform LAIFromNDVIImageTransform.cxx )
TARGET_LINK_LIBRARIES(LAIFromNDVIImageTransform OTBSimulation)
IF( NOT OTB_DISABLE_CXX_TESTING AND BUILD_TESTING )
SET(BASELINE ${OTB_DATA_ROOT}/Baseline/Examples/Simulation)
SET(BASELINE_IMAGES_OTB ${OTB_DATA_ROOT}/Baseline/OTB/Images)
SET(INPUTDATA ${OTB_DATA_ROOT}/Examples)
SET(TEMP ${OTB_BINARY_DIR}/Testing/Temporary)
......@@ -23,7 +29,7 @@ SET(TOL_2 0.001)
# tests#
# ------- DEMToRainbowExampleTest ----------
# ------- ProsailModelExampleTest ----------
ADD_TEST(siTvProsailModelExampleTest ${EXE_TESTS}
--compare-ascii ${TOL_2} ${BASELINE}/siTvProsailModelExampleTest.txt
......@@ -47,6 +53,19 @@ ADD_TEST(siTvProsailModelExampleTest ${EXE_TESTS}
)
ADD_TEST(siTvLAIFromNDVIImageTransfromExampleTest ${EXE_TESTS}
--compare-image ${TOL} ${BASELINE_IMAGES_OTB}/raRAndNIRVegetationIndex_LAIFromNDVIFormosat2_verySmallFSATSWcRcNir.tif
${TEMP}/siTvLAIFromNDVIImageTransfromExampleTest_verySmallFSATSW.tif
LAIFromNDVIImageTransform
${INPUTDATA}/verySmallFSATSW.tif
${TEMP}/siTvLAIFromNDVIImageTransfromExampleTest_verySmallFSATSW.tif
${TEMP}/verySmallFSATSW_visu.png
${TEMP}/siTvLAIFromNDVIImageTransfromExampleTest_verySmallFSATSW_visu.png
1 # red
4 # nir
)
INCLUDE_DIRECTORIES(${OTB_SOURCE_DIR}/Testing/Code)
ADD_EXECUTABLE(otbSimulationExamplesTests otbSimulationExamplesTests.cxx)
TARGET_LINK_LIBRARIES(otbSimulationExamplesTests OTBSimulation OTBCommon OTBTesting)
......
/*=========================================================================
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.
=========================================================================*/
// Software Guide : BeginCommandLineArgs
//
// INPUTS: {verySmallFSATSW.tif}
// OUTPUTS: {siTvLAIFromNDVIImageTransfromExampleTest_verySmallFSATSW.tif},{verySmallFSATSW_visu.png},{siTvLAIFromNDVIImageTransfromExampleTest_verySmallFSATSW_visu.png}
// 1 4
// Software Guide : EndCommandLineArgs
//
// Software Guide : BeginLatex
//
// This example presents a way to generate LAI image using formula dedicated to Formosat2.
// LAI Image is used as an input in Image Simulation process.
//
// Let's look at the minimal code required to use this algorithm. First, the
// following headers must be included.
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
#include "otbMultiChannelRAndNIRIndexImageFilter.h"
#include "otbVegetationIndicesFunctor.h"
// Software Guide : EndCodeSnippet
#include "otbCommandLineArgumentParser.h"
#include "otbImage.h"
#include "otbImageFileWriter.h"
#include "otbImage.h"
#include "otbVectorImage.h"
#include "otbImageFileReader.h"
#include "otbImageFileWriter.h"
#include "itkRescaleIntensityImageFilter.h"
int main(int argc, char *argv[])
{
if (argc != 7)
{
std::cerr << "Wrong Parameters " << std::endl;
return EXIT_FAILURE;
}
const unsigned int Dimension = 2;
typedef otb::VectorImage<double, Dimension> InputImageType;
typedef otb::Image<double, Dimension> OutputImageType;
typedef otb::Image<unsigned char, Dimension> ImageVisuType;
typedef otb::ImageFileReader<InputImageType> ReaderType;
typedef otb::ImageFileWriter<OutputImageType> WriterType;
typedef otb::ImageFileWriter<ImageVisuType> VisuWriterType;
typedef otb::ImageFileWriter<InputImageType> InWriterType;
// Software Guide : BeginLatex
//
// Filter type is a generic \doxygen{otb}{MultiChannelRAndNIRIndexImageFilter} using Formosat2 specific LAI
// \doxygen{otb}{LAIFromNDVIFormosat2Functor}.
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
typedef otb::Functor::LAIFromNDVIFormosat2Functor
<InputImageType::InternalPixelType,
InputImageType::InternalPixelType, OutputImageType::PixelType> FunctorType;
typedef otb::MultiChannelRAndNIRIndexImageFilter
<InputImageType, OutputImageType, FunctorType>
MultiChannelRAndNIRIndexImageFilterType;
// Software Guide : EndCodeSnippet
// Instantiating object
// Software Guide : BeginLatex
//
// Next the filter is created by invoking the \code{New()}~method and
// assigning the result to a \doxygen{itk}{SmartPointer}.
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
MultiChannelRAndNIRIndexImageFilterType::Pointer filter
= MultiChannelRAndNIRIndexImageFilterType::New();
// Software Guide : EndCodeSnippet
ReaderType::Pointer reader = ReaderType::New();
WriterType::Pointer writer = WriterType::New();
InWriterType::Pointer inWriter = InWriterType::New();
VisuWriterType::Pointer visuWriter = VisuWriterType::New();
char * InputName = argv[1];
char * OutputName1 = argv[2];
char * OutputName2 = argv[3];
char * OutputName3 = argv[4];
reader->SetFileName(InputName);
// Software Guide : BeginLatex
//
// filter input is set with input image
//
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
filter->SetInput(reader->GetOutput());
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
//
// then red and nir channels index are set using \code{SetRedIndex()} and \code{SetNIRIndex()}
//
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
unsigned int redChannel = static_cast<unsigned int> (atoi(argv[5]));
unsigned int nirChannel = static_cast<unsigned int> (atoi(argv[6]));
filter->SetRedIndex(redChannel);
filter->SetNIRIndex(nirChannel);
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
// The invocation of the \code{Update()} method triggers the
// execution of the pipeline.
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
filter->Update();
// Software Guide : EndCodeSnippet
writer->SetFileName(OutputName1);
writer->SetInput(filter->GetOutput());
writer->Update();
//rescale data
inWriter->SetFileName(OutputName2);
//typedef itk::RescaleIntensityImageFilter<InputImageType,
// OutputImageType> RescalerType;
//RescalerType::Pointer rescaler = RescalerType::New();
//rescaler->SetInput(reader->GetOutput());
//rescaler->SetOutputMinimum(0);
//rescaler->SetOutputMaximum(255);
inWriter->SetInput(reader->GetOutput());
inWriter->Update();
visuWriter->SetFileName(OutputName3);
typedef itk::RescaleIntensityImageFilter<OutputImageType,
ImageVisuType> RescalerTypeOut;
RescalerTypeOut::Pointer rescaler = RescalerTypeOut::New();
rescaler->SetInput(filter->GetOutput());
rescaler->SetOutputMinimum(0);
rescaler->SetOutputMaximum(255);
visuWriter->SetInput(rescaler->GetOutput());
visuWriter->Update();
// Software Guide : BeginLatex
// \begin{figure}
// \center
// \includegraphics[width=0.44\textwidth]{verySmallFSATSW_visu.eps}
// \includegraphics[width=0.44\textwidth]{siTvLAIFromNDVIImageTransfromExampleTest_verySmallFSATSW_visu.eps}
// \itkcaption[LAIFromNDVIImageTransform Filter]{LAI generation \emph{(right)} from NDVI applied on Formosat 2 Image \emph{(left)} .}
// \label{fig:LAIFromNDVIImageTransform}
// \end{figure}
//
// Figure \ref{fig:LAIFromNDVIImageTransform} illustrates the LAI generation using Formosat 2 data.
//
//
// Software Guide : EndLatex
return EXIT_SUCCESS;
}
......@@ -24,9 +24,18 @@
void RegisterTests()
{
REGISTER_TEST(ProsailModel);
REGISTER_TEST(LAIFromNDVIImageTransform);
}
#undef main
#define main ProsailModel
#include "ProsailModel.cxx"
#undef main
#define main LAIFromNDVIImageTransform
#include "LAIFromNDVIImageTransform.cxx"
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