/*========================================================================= 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 "itkNormalize2TensorsCommandFactory.h" #include "itkCreateObjectFunction.h" #include "itkNormalize2TensorsCommand.h" #include "itkVersion.h" namespace itk { Normalize2TensorsCommandFactory::Normalize2TensorsCommandFactory() { this->RegisterOverride("itkCommandObjectBase", "itkNormalize2TensorsCommand", "Divide each tensor by its largest eigenvalue", 1, CreateObjectFunction::New()); } Normalize2TensorsCommandFactory::~Normalize2TensorsCommandFactory() { } const char* Normalize2TensorsCommandFactory::GetITKSourceVersion() const { return ITK_SOURCE_VERSION; } const char* Normalize2TensorsCommandFactory::GetDescription() const { return "Divide each tensor by its largest eigenvalue"; } } // end namespace itk