X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=registration%2FclitkPointListTransform.h;h=b897f1250a8ca8ba2f4370ea5f6fac82b6f496ce;hb=e1e858002a1f83257ea28a37e611de3e1373f779;hp=9561f10d1ba5b13445a674ac7d3fb9a52c574488;hpb=47b13d7b1b389978ed3df0abb34039f5920115b4;p=clitk.git diff --git a/registration/clitkPointListTransform.h b/registration/clitkPointListTransform.h index 9561f10..b897f12 100644 --- a/registration/clitkPointListTransform.h +++ b/registration/clitkPointListTransform.h @@ -3,7 +3,7 @@ Authors belong to: - University of LYON http://www.universite-lyon.fr/ - - Léon Bérard cancer center http://oncora1.lyon.fnclcc.fr + - Léon Bérard cancer center http://www.centreleonberard.fr - CREATIS CNRS laboratory http://www.creatis.insa-lyon.fr This software is distributed WITHOUT ANY WARRANTY; without even @@ -14,7 +14,7 @@ - BSD See included LICENSE.txt file - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html -======================================================================-====*/ +===========================================================================**/ #ifndef __clitkPointListTransform_h #define __clitkPointListTransform_h #include "clitkList.h" @@ -117,10 +117,13 @@ namespace clitk return OutputCovariantVectorType(); } - virtual const JacobianType& GetJacobian(const InputPointType &point ) const + virtual void ComputeJacobianWithRespectToParameters (const InputPointType &p, JacobianType &jacobian) const { - itkExceptionMacro( << "PointListTransform doesn't declare GetJacobian" ); - return this->m_Jacobian; + itkExceptionMacro( << "PointListTransform doesn't declare ComputeJacobianWithRespectToParameters" ); + } + virtual void ComputeJacobianWithRespectToPosition (const InputPointType &p, JacobianType &jacobian) const + { + itkExceptionMacro( << "PointListTransform doesn't declare ComputeJacobianWithRespectToPosition" ); } protected: