MantisBT - ITK
View Issue Details
0009227ITKpublic2009-07-02 17:542010-11-07 02:57
sgerber 
Luis Ibanez 
normalminoralways
closedno change required 
ITK-3-14 
 
backlog
0009227: itkDerivativeImageFilter does not take direction into acount
itkDerivativeImageFilter either computes derivatives in index space or in physical spacing. For the physical spacing the image dierction is not taken into account.
No tags attached.
Issue History
2009-07-02 17:54sgerberNew Issue
2010-11-02 13:46Hans JohnsonStatusnew => assigned
2010-11-02 13:46Hans JohnsonAssigned To => Luis Ibanez
2010-11-07 02:57Luis IbanezSprint Status => backlog
2010-11-07 02:57Luis IbanezNote Added: 0023013
2010-11-07 02:57Luis IbanezStatusassigned => closed
2010-11-07 02:57Luis IbanezResolutionopen => no change required

Notes
(0023013)
Luis Ibanez   
2010-11-07 02:57   
The m_Direction is passed to the derivative operator in :

itkDerivativeImageFilter.txx : 48-52

  // Build an operator so that we can determine the kernel size
  DerivativeOperator< OutputPixelType, ImageDimension > oper;
  oper.SetDirection(m_Direction);
  oper.SetOrder(m_Order);
  oper.CreateDirectional();