ANTsX / ANTsR

R interface to the ANTs biomedical image processing library
https://antsx.github.io/ANTsR
Apache License 2.0
127 stars 35 forks source link

Note for N4 issue update #299

Closed ntustison closed 4 years ago

ntustison commented 4 years ago

Once this pull request is merged to address this issue, the lines in fsl2antsrTransform.cpp will need to be updated from

  vnl_matrix<double> m_dir, m_ras_matrix;
  vnl_diag_matrix<double> m_scale, m_lps_to_ras;
  vnl_vector<double> v_origin, v_ras_offset;

to

  vnl_matrix_fixed<double, 3, 3> m_dir, m_ras_matrix;
  vnl_diag_matrix_fixed<double, 3> m_scale, m_lps_to_ras;
  vnl_vector_fixed<double, 3> v_origin, v_ras_offset;

to accommodate the recent update in ITKR.