From 9d73903c9672166423bcb7e184fb0a404222ad15 Mon Sep 17 00:00:00 2001 From: Matthew Webster <mwebster@fmrib.ox.ac.uk> Date: Thu, 7 Feb 2008 16:42:46 +0000 Subject: [PATCH] Removed ConvertCoords --- miscmaths.cc | 20 -------------------- miscmaths.h | 2 -- 2 files changed, 22 deletions(-) diff --git a/miscmaths.cc b/miscmaths.cc index cbde2ee..b03cd50 100644 --- a/miscmaths.cc +++ b/miscmaths.cc @@ -1108,26 +1108,6 @@ mat44 newmat_to_mat44(const Matrix& inmat) } return retmat; } - -void ConvertCoords(float& x, float& y, float& z, const Matrix mat) -{ - ColumnVector vec(4); - vec << x << y << z << 1.0; - vec = mat * vec; // apply voxel xfm - x = vec(1); - y = vec(2); - z = vec(3); -} - -void ConvertCoords(int& x, int& y, int& z, const Matrix mat) -{ - ColumnVector vec(4); - vec << x << y << z << 1.0; - vec = mat * vec; // apply voxel xfm - x = (int)vec(1); - y = (int)vec(2); - z = (int)vec(3); -} // Matlab style functions for percentiles, quantiles and median // AUG 06 CB diff --git a/miscmaths.h b/miscmaths.h index 9ff9fe4..e5e740f 100644 --- a/miscmaths.h +++ b/miscmaths.h @@ -165,8 +165,6 @@ namespace MISCMATHS { mat44 NewmatToMat44(const Matrix& m); mat44 newmat_to_mat44(const Matrix& inmat); Matrix mat44_to_newmat(mat44 inmat); - void ConvertCoords(float& x, float& y, float& z, const Matrix mat); - void ConvertCoords(int& x, int& y, int& z, const Matrix mat); void get_axis_orientations(const Matrix& sform_mat, int sform_code, const Matrix& qform_mat, int qform_code, -- GitLab