Commit 60e51aba authored by Traizet Cedric's avatar Traizet Cedric
Browse files

Empty app creation

No related merge requests found
Showing with 47 additions and 0 deletions
+47 -0
cmake_minimum_required(VERSION 2.8.9)
project(CbDimensionalityReduction)
#set(CbDimensionalityReduction_LIBRARIES CbDimensionalityReduction)
otb_module_impl()
OTB_CREATE_APPLICATION(NAME CbDimensionalityReductionTrainer
SOURCES cbDimensionalityReductionTrainer.cxx
LINK_LIBRARIES ${${otb-module}_LIBRARIES}
)
#include "otbWrapperApplication.h"
#include "otbWrapperApplicationFactory.h"
class CbDimensionalityReductionTrainer : public otb::Wrapper::Application
{
public:
typedef CbDimensionalityReductionTrainer Self;
typedef itk::SmartPointer<Self> Pointer;
itkNewMacro(Self);
itkTypeMacro(CbDimensionalityReductionTrainer, otb::Wrapper::Application);
private:
void DoInit()
{
SetName("CbDimensionalityReductionTrainer");
SetDescription("Trainer for the dimensionality reduction algorithms used in the cbDimensionalityReduction application.");
}
void DoUpdateParameters()
{
}
void DoExecute()
{
int ThisDoesNothing = 0;
}
};
OTB_APPLICATION_EXPORT(CbDimensionalityReductionTrainer)
set(DOCUMENTATION "Dimensionality reduction application")
otb_module(CbDimensionalityReduction
DEPENDS
OTBCommon
OTBApplicationEngine
DESCRIPTION
"${DOCUMENTATION}"
)
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment