/*========================================================================= Program: Tensor ToolKit - TTK Module: $URL$ Language: C++ Date: $Date$ Version: $Revision$ Copyright (c) INRIA 2010. All rights reserved. See LICENSE.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. =========================================================================*/ #include "itkAverageStdCalculatorCommandFactory.h" #include "itkCreateObjectFunction.h" #include "itkAverageStdCalculatorCommand.h" #include "itkVersion.h" namespace itk { AverageStdCalculatorCommandFactory::AverageStdCalculatorCommandFactory() { this->RegisterOverride("itkCommandObjectBase", "itkAverageStdCalculatorCommand", "Calculate the average and covariance matrix of a set of images", 1, CreateObjectFunction::New()); } AverageStdCalculatorCommandFactory::~AverageStdCalculatorCommandFactory() { } const char* AverageStdCalculatorCommandFactory::GetITKSourceVersion() const { return ITK_SOURCE_VERSION; } const char* AverageStdCalculatorCommandFactory::GetDescription() const { return "Calculate the average and covariance matrix of a set of images"; } } // end namespace itk