/*========================================================================= 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 "itkTensorGradientMagnitudeCalculatorCommandFactory.h" #include "itkCreateObjectFunction.h" #include "itkTensorGradientMagnitudeCalculatorCommand.h" #include "itkVersion.h" namespace itk { TensorGradientMagnitudeCalculatorCommandFactory::TensorGradientMagnitudeCalculatorCommandFactory() { this->RegisterOverride("itkCommandObjectBase", "itkTensorGradientMagnitudeCalculatorCommand", "Calculate the gradient magnitude of a tensor image", 1, CreateObjectFunction::New()); } TensorGradientMagnitudeCalculatorCommandFactory::~TensorGradientMagnitudeCalculatorCommandFactory() { } const char* TensorGradientMagnitudeCalculatorCommandFactory::GetITKSourceVersion() const { return ITK_SOURCE_VERSION; } const char* TensorGradientMagnitudeCalculatorCommandFactory::GetDescription() const { return "Calculate the gradient magnitude of a tensor image"; } } // end namespace itk