Index: branches/eam_branches/ipp-20120905/Ohana/src/opihi/cmd.data/spline_apply.c
===================================================================
--- branches/eam_branches/ipp-20120905/Ohana/src/opihi/cmd.data/spline_apply.c	(revision 34522)
+++ branches/eam_branches/ipp-20120905/Ohana/src/opihi/cmd.data/spline_apply.c	(revision 34523)
@@ -2,5 +2,5 @@
 
 // need to rename this as an image function
-int spline_apply_cmd (int argc, char **argv) {
+int imspline_apply (int argc, char **argv) {
   
   int i, j, I, J;
@@ -11,5 +11,5 @@
 
   if (argc != 7) {
-    gprint (GP_ERR, "USAGE: spline_apply <Y> <Y2> <out> (x/y) Nx Ny\n");
+    gprint (GP_ERR, "USAGE: imspline_apply <Y> <Y2> <out> (x/y) Nx Ny\n");
     return (FALSE);
   }
@@ -75,12 +75,12 @@
 	Ty2[j] = *V2;
       }
-      Tx1[i] = spline_apply (Tyc, Ty1, Ty2, Ny, y);
+      Tx1[i] = spline_apply_flt (Tyc, Ty1, Ty2, Ny, y);
     }
-    spline_construct (Txc, Tx1, Nx, Tx2);
+    spline_construct_flt (Txc, Tx1, Nx, Tx2);
 
     /* apply x-dir spline to new image */
     for (I = 0; I < nx; I++, V++) {
       x = I * rx;
-      *V = spline_apply (Txc, Tx1, Tx2, Nx, x);
+      *V = spline_apply_flt (Txc, Tx1, Tx2, Nx, x);
     }
   }
Index: branches/eam_branches/ipp-20120905/Ohana/src/opihi/cmd.data/spline_construct.c
===================================================================
--- branches/eam_branches/ipp-20120905/Ohana/src/opihi/cmd.data/spline_construct.c	(revision 34522)
+++ branches/eam_branches/ipp-20120905/Ohana/src/opihi/cmd.data/spline_construct.c	(revision 34523)
@@ -2,5 +2,5 @@
 
 // need to rename this as an image function
-int spline_construct_cmd (int argc, char **argv) {
+int imspline_construct (int argc, char **argv) {
   
   int i, j, Nx, Ny;
@@ -9,5 +9,5 @@
 
   if (argc != 4) {
-    gprint (GP_ERR, "USAGE: spline_construct <in> <out> (x/y)\n");
+    gprint (GP_ERR, "USAGE: imspline_construct <in> <out> (x/y)\n");
     return (FALSE);
   }
@@ -55,5 +55,5 @@
     }
   
-    spline_construct (Tx, Ty, Ny, Ty2);
+    spline_construct_flt (Tx, Ty, Ny, Ty2);
   
     /* copy derivatives to output buffer */
