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

DOC: Prosail model example for the software guide.

parent 174ee26a
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@ ADD_SUBDIRECTORY(Fusion)
ADD_SUBDIRECTORY(Tutorials)
ADD_SUBDIRECTORY(Markov)
ADD_SUBDIRECTORY(OBIA)
ADD_SUBDIRECTORY(Simulation)
IF(OTB_USE_VISU_GUI)
ADD_SUBDIRECTORY(Visualization)
......@@ -86,6 +86,7 @@ ELSE(OTB_BINARY_DIR)
ADD_SUBDIRECTORY(Tutorials)
ADD_SUBDIRECTORY(Markov)
ADD_SUBDIRECTORY(OBIA)
ADD_SUBDIRECTORY(Simulation)
IF(OTB_USE_VISU_GUI)
ADD_SUBDIRECTORY(Visualization)
......
#
# Examples on the use of segmentation algorithms
#
PROJECT(ImageSimulationExamples)
INCLUDE_REGULAR_EXPRESSION("^.*$")
ADD_EXECUTABLE(ProsailModel ProsailModel.cxx )
TARGET_LINK_LIBRARIES(ProsailModel OTBSimulation)
IF( NOT OTB_DISABLE_CXX_TESTING AND BUILD_TESTING )
SET(BASELINE ${OTB_DATA_ROOT}/Baseline/Examples/Simulation)
SET(INPUTDATA ${OTB_DATA_ROOT}/Examples)
SET(TEMP ${OTB_BINARY_DIR}/Testing/Temporary)
SET(EXE_TESTS ${CXX_TEST_PATH}/otbSimulationExamplesTests)
SET(TOL 0.0)
SET(TOL_2 0.001)
# tests#
# ------- DEMToRainbowExampleTest ----------
ADD_TEST(siTvProsailModelExampleTest ${EXE_TESTS}
--compare-ascii ${TOL_2} ${BASELINE}/siTvProsailModelExampleTest.txt
${TEMP}/siTvProsailModelExampleTest.txt
ProsailModel
30.0 #cab
10.0 #car
0.0 #CBrown
0.015 #Cw
0.009 #Cm
1.2 #N
2 #LAI
50 #Angl
1 #PSoil
70 #Skyl
0.2 #HSpot
30 #TTS
0 #TTO
0 #PSI
${TEMP}/siTvProsailModelExampleTest.txt
)
INCLUDE_DIRECTORIES(${OTB_SOURCE_DIR}/Testing/Code)
ADD_EXECUTABLE(otbSimulationExamplesTests otbSimulationExamplesTests.cxx)
TARGET_LINK_LIBRARIES(otbSimulationExamplesTests OTBSimulation OTBCommon OTBTesting)
ENDIF( NOT OTB_DISABLE_CXX_TESTING AND BUILD_TESTING )
/*=========================================================================
Program: ORFEO Toolbox
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
See OTBCopyright.txt for details.
Some parts of this code are derived from ITK. See ITKCopyright.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:
// 30.0 10.0 0.0 0.015 0.009 1.2 2 50 1 70 0.2 30 0 0
// OUTPUTS: SailReflTest.txt
// Software Guide : EndCommandLineArgs
//
// Software Guide : BeginLatex
//
// This example presents how to use PROSAIL (Prospect + Sail) model to generate
// viewing reflectance from leaf parameters, vegetation, and viewing parameters.
// Output can be used to simulate image for example.
//
// 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 "otbLeafParameters.h"
#include "otbSailModel.h"
#include "otbProspectModel.h"
// Software Guide : EndCodeSnippet
#include "otbImageFileReader.h"
#include "otbImageFileWriter.h"
int main(int argc, char *argv[])
{
if (argc < 16)
{
std::cerr << "Missing Parameters " << std::endl;
return EXIT_FAILURE;
}
char * OutputName = argv[15];
// Software Guide : BeginLatex
//
// We now define leaf parameters, which characterize vegetation composition.
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
typedef otb::LeafParameters LeafParametersType;
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
//
// Next the parameters variable is created by invoking the \code{New()}~method and
// assigning the result to a \doxygen{itk}{SmartPointer}.
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
LeafParametersType::Pointer leafParams = LeafParametersType::New();
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
//
// Leaf characteristics is then set.
// Input parameters are :
// \begin{itemize}
// \item Chlorophyll concentration (Cab) in $\mu g/cm^2$.
// \item Carotenoid concentration (Car) in $\mu g/cm^2$.
// \item Brown pigment content (CBrown) in arbitrary unit.
// \item Water thickness EWT (Cw) in $cm$.
// \item Dry matter content LMA (Cm) in $g/cm^2$.
// \item Leaf structure parameter (N).
// \end{itemize}
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
double Cab = static_cast<double> (atof(argv[1]));
double Car = static_cast<double> (atof(argv[2]));
double CBrown = static_cast<double> (atof(argv[3]));
double Cw = static_cast<double> (atof(argv[4]));
double Cm = static_cast<double> (atof(argv[5]));
double N = static_cast<double> (atof(argv[6]));
leafParams->SetCab(Cab);
leafParams->SetCar(Car);
leafParams->SetCBrown(CBrown);
leafParams->SetCw(Cw);
leafParams->SetCm(Cm);
leafParams->SetN(N);
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
//
// Leaf parameters are used as prospect input
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
typedef otb::ProspectModel ProspectType;
ProspectType::Pointer prospect = ProspectType::New();
prospect->SetInput(leafParams);
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
//
// Now we use SAIL model to generate transmitance value. SAIL model is created by invoking
// the \code{New()} method and
// assigning the result to a \doxygen{itk}{SmartPointer}.
//
// Software Guide : EndLatex
// Software Guide : BeginLatex
//
// sail input parameters are :
// \begin{itemize}
// \item leaf area index (LAI).
// \item average leaf angle (Ang) in $\deg$.
// \item soil coefficient (PSoil).
// \item diffuse/direct radiation (Skyl).
// \item hot spot (HSpot).
// \item solar zenith angle (TTS) in $\deg$.
// \item observer zenith angle (TTO) in $\deg$.
// \item azimuth (PSI) in $\deg$.
// \end{itemize}
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
double LAI = static_cast<double> (atof(argv[7]));
double Angl = static_cast<double> (atof(argv[8]));
double PSoil = static_cast<double> (atof(argv[9]));
double Skyl = static_cast<double> (atof(argv[10]));
double HSpot = static_cast<double> (atof(argv[11]));
double TTS = static_cast<double> (atof(argv[12]));
double TTO = static_cast<double> (atof(argv[13]));
double PSI = static_cast<double> (atof(argv[14]));
typedef otb::SailModel SailType;
SailType::Pointer sail = SailType::New();
sail->SetLAI(LAI);
sail->SetAngl(Angl);
sail->SetPSoil(PSoil);
sail->SetSkyl(Skyl);
sail->SetHSpot(HSpot);
sail->SetTTS(TTS);
sail->SetTTO(TTO);
sail->SetPSI(PSI);
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
// Reflectance and Transmittance are set with prospect output.
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
sail->SetReflectance(prospect->GetReflectance());
sail->SetTransmittance(prospect->GetTransmittance());
// 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
sail->Update();
// Software Guide : EndCodeSnippet
// Software Guide : BeginLatex
//
// GetViewingReflectance provides viewing reflectance vector (Nx2 N is spectral values, first column wavelength second column viewing reflectance) by calling GetResponse.
// GetHemisphericalReflectance provides hemispherical reflectance vector (Nx2 N is spectral values, first column wavelength second column hemispherical reflectance) by calling GetResponse.
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
for (unsigned int i = 0; i < sail->GetViewingReflectance()->Size(); ++i)
{
std::cout << "wavelength : " << sail->GetViewingReflectance()->GetResponse()[i].first;
std::cout << ". Viewing reflectance " << sail->GetViewingReflectance()->GetResponse()[i].second;
std::cout << ". Hemispherical reflectance " << sail->GetHemisphericalReflectance()->GetResponse()[i].second
<< std::endl;
}
// Software Guide : EndCodeSnippet
std::ofstream outputFile(OutputName, std::ios::out);
for (unsigned int i = 0; i < sail->GetHemisphericalReflectance()->Size(); ++i)
{
outputFile << sail->GetViewingReflectance()->GetResponse()[i].second << " ";
outputFile << sail->GetHemisphericalReflectance()->GetResponse()[i].second << std::endl;
}
// Software Guide : BeginLatex
//
// here you can found example parameters :
// \begin{itemize}
// \item Cab 30.0
// \item Car 10.0
// \item CBrown 0.0
// \item Cw 0.015
// \item Cm 0.009
// \item N 1.2
// \item LAI 2
// \item Angl 50
// \item PSoil 1
// \item Skyl 70
// \item HSpot 0.2
// \item TTS 30
// \item TTO 0
// \item PSI 0
// \end{itemize}
//
// Software Guide : EndLatex
return EXIT_SUCCESS;
}
/*=========================================================================
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.
=========================================================================*/
// this file defines the otbMultiScaleTest for the test driver
// and all it expects is that you have a function called RegisterTests
#include <iostream>
#include "otbTestMain.h"
void RegisterTests()
{
REGISTER_TEST(ProsailModel);
}
#undef main
#define main ProsailModel
#include "ProsailModel.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