/*========================================================================= 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 "itkHessianTensorImageCalculatorCommandFactory.h" #include "itkCreateObjectFunction.h" #include "itkHessianTensorImageCalculatorCommand.h" #include "itkVersion.h" namespace itk { HessianTensorImageCalculatorCommandFactory::HessianTensorImageCalculatorCommandFactory() { this->RegisterOverride("itkCommandObjectBase", "itkHessianTensorImageCalculatorCommand", "Extract the largest eigenvalue of the Hessian of a tensor field", 1, CreateObjectFunction::New()); } HessianTensorImageCalculatorCommandFactory::~HessianTensorImageCalculatorCommandFactory() { } const char* HessianTensorImageCalculatorCommandFactory::GetITKSourceVersion() const { return ITK_SOURCE_VERSION; } const char* HessianTensorImageCalculatorCommandFactory::GetDescription() const { return "Extract the largest eigenvalue of the Hessian of a tensor field"; } } // end namespace itk