Skip to content
Snippets Groups Projects

Regression refactoring : TrainVectorRegression

Merged Cédric Traizet requested to merge regression_refactoring into develop
All threads resolved!
4 files
+ 109
84
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -29,11 +29,11 @@ namespace otb
namespace Wrapper
{
class TrainVectorClassifier : public TrainVectorBase
class TrainVectorClassifier : public TrainVectorBase<float, int>
{
public:
typedef TrainVectorClassifier Self;
typedef TrainVectorBase Superclass;
typedef TrainVectorBase<float, int> Superclass;
typedef itk::SmartPointer<Self> Pointer;
typedef itk::SmartPointer<const Self> ConstPointer;
itkNewMacro( Self )
Loading