[vspline] 44/72: fixed bug for REFLECT BCs and small arrays went through examples to make sure all compile and work

Kay F. Jahnke kfj-guest at moszumanska.debian.org
Sun Jul 2 09:02:41 UTC 2017


This is an automated email from the git hooks/post-receive script.

kfj-guest pushed a commit to branch master
in repository vspline.

commit 94e54cf5d90bea21b95c1230fdd597afb5f6849f
Author: Kay F. Jahnke <kfjahnke at gmail.com>
Date:   Mon Apr 17 15:27:57 2017 +0200

    fixed bug for REFLECT BCs and small arrays
    went through examples to make sure all compile and work
---
 eval.h                  |    2 +
 example/channels.cc     |    2 +-
 example/complex.cc      |   13 +-
 example/eval.cc         |   11 +-
 example/gradient.cc     |   20 +-
 example/gsm.cc          |    7 +-
 example/gsm2.cc         |    8 +-
 example/pano_extract.cc |   42 +-
 example/roundtrip.cc    |   15 +-
 example/slice.cc        |    4 -
 example/splinus.cc      |    1 +
 example/times.txt       | 3678 -----------------------------------------------
 filter.h                |    5 +-
 remap.h                 |    2 +-
 14 files changed, 87 insertions(+), 3723 deletions(-)

diff --git a/eval.h b/eval.h
index 51f196b..5cf7915 100644
--- a/eval.h
+++ b/eval.h
@@ -145,6 +145,8 @@ MultiArray < 2 , target_type > calculate_weight_matrix ( int degree , int deriva
     // a very efficient version of the basis function which only evaluates at
     // whole numbers. This basis function version does hardly any calculations
     // but instead relies on precalculated values. see bspline_basis in prefilter.h
+    // note: with large degrees (20+), this still takes a fair amount of time, but
+    // rather seconds than minutes with the standard routine.
     
     for ( int column = 0 ; column < order ; ++column , --x )
       res ( column , row ) = bspline_basis<long double> ( x , degree , row + derivative ) / faculty;
diff --git a/example/channels.cc b/example/channels.cc
index e07c4af..382266b 100644
--- a/example/channels.cc
+++ b/example/channels.cc
@@ -39,7 +39,7 @@
 /// of the 'mother' spline.
 ///
 /// compile with:
-/// clang++ -std=c++11 -march=native -o channels -O3 -pthread -DUSE_VC=1 channels.cc -lvigraimpex -lVc
+/// clang++ -std=c++11 -march=native -o channels -O3 -pthread -DUSE_VC channels.cc -lvigraimpex -lVc
 /// g++ also works.
 
 #include <vspline/vspline.h>
diff --git a/example/complex.cc b/example/complex.cc
index cc0270b..0a23f90 100644
--- a/example/complex.cc
+++ b/example/complex.cc
@@ -36,6 +36,8 @@
 /// vspline handles std::complex data like pairs of the complex
 /// type's value_type, and uses a vigra::TinyVector of two
 /// simdized value_types as the vectorized type.
+///
+/// compile: clang++ -std=c++11 -march=native -o complex -O3 -pthread -DUSE_VC complex.cc -lvigraimpex -lVc
 
 #include <iomanip>
 #include <assert.h>
@@ -45,21 +47,12 @@
 
 int main ( int argc , char * argv[] )
 {
-// using the highest-level access to prefiltering, we code:
-
   vspline::bspline < std::complex < float > , 1 > bsp ( 100000 , 3 , vspline::MIRROR ) ;
   auto v1 = bsp.core ;
   v1 [ 50000 ] = std::complex<float> ( 1.0 + 1i ) ;
   bsp.prefilter() ;
 
-//   for ( int k = 4990 ; k < 5010 ; k++ )
-//   {
-//     std::cout << v1[k] << std::endl ;
-//   }
-
-  typedef vspline::evaluator < float ,
-                               std::complex<float> ,
-                               -1 , -1 , 2 > ev_type ;
+  typedef vspline::evaluator < float , std::complex<float> > ev_type ;
   
   ev_type ev ( bsp ) ;
   for ( float k = 49999.0 ; k < 50001.0 ; k += .1 )
diff --git a/example/eval.cc b/example/eval.cc
index 1577993..393505a 100644
--- a/example/eval.cc
+++ b/example/eval.cc
@@ -32,7 +32,12 @@
 /// eval.cc
 ///
 /// takes a set of knot point values from cin, calculates a 1D b-spline
-/// over them, and evaluates it at coordinates taken from cin 
+/// over them, and evaluates it at coordinates taken from cin.
+/// The output shows how the coordinate is split into integral and real
+/// part by the mapping used for the specified boundary condition
+/// and the result of evaluating the spline at this point.
+///
+/// compile: clang++ -std=c++11 -o eval -pthread eval.cc
 
 #include <vspline/vspline.h>
 #include <iomanip>
@@ -95,7 +100,7 @@ int main ( int argc , char * argv[] )
   
   // fix the type for the bspline object
   typedef bspline < double , 1 > spline_type ;
-  spline_type bsp  ( shape , spline_degree , bcv , EXPLICIT ) ;
+  spline_type bsp  ( shape , spline_degree , bcv ) ; // , EXPLICIT ) ;
   cout << "created bspline object:" << endl << bsp << endl ;
 
   // fill the data into the spline's 'core' area
@@ -111,7 +116,7 @@ int main ( int argc , char * argv[] )
     cout << " " << coeff << endl ;
 
   // fix the type for the evaluator and create it
-  typedef evaluator < 1 , double , double , int > eval_type ;
+  typedef evaluator < double , double > eval_type ;
   eval_type ev ( bsp ) ;
   auto map = ev.get_mapping() ;
   int ic ;
diff --git a/example/gradient.cc b/example/gradient.cc
index bce6301..1ecf8a7 100644
--- a/example/gradient.cc
+++ b/example/gradient.cc
@@ -37,14 +37,16 @@
 /// BCs, evaluating the spline with real coordinates anywhere inside the
 /// defined range should produce precisely the sum of the coordinates.
 /// This is a good test for both the precision of the evaluation and it's
-/// correct functioning, particularly with higher-D arrays. 
+/// correct functioning, particularly with higher-D arrays.
+///
+/// compile: clang++ -std=c++11 -pthread -o gradient gradient.cc
 
 #include <vspline/vspline.h>
 #include <random>
 
 using namespace std ;
 
-main ( int argc , char * argv[] )
+int main ( int argc , char * argv[] )
 {
   typedef vspline::bspline < double , 3 > spline_type ;
   typedef typename spline_type::shape_type shape_type ;
@@ -63,11 +65,10 @@ main ( int argc , char * argv[] )
   
   bspl.prefilter() ;
 
-  typedef vspline::evaluator < bspl.dimension , double , double , int > evaluator_type ;
-  typedef typename evaluator_type::nd_rc_type coordinate_type ;
+  typedef vigra::TinyVector < double , 3 > coordinate_type ;
+  typedef vspline::evaluator < coordinate_type , double > evaluator_type ;
   
   evaluator_type ev ( bspl ) ;
-//   double * ws = new double [ ev.workspace_size() ] ;
   
   std::random_device rd;
   std::mt19937 gen(rd());
@@ -75,12 +76,13 @@ main ( int argc , char * argv[] )
 
   coordinate_type c ;
   
-  for ( int times = 0 ; times < 1 ; times++ )
+  for ( int times = 0 ; times < 100 ; times++ )
   {
     for ( int d = 0 ; d < bspl.dimension ; d++ )
       c[d] = ( core_shape[d] - 1 ) * std::generate_canonical<double, 20>(gen) ;
-    double delta = ev.eval ( c ) - sum ( c ) ;
-    if ( delta > 2.0e-14 )
-      cout << c << " -> delta = " << delta << endl ;
+    double result = ev.eval ( c ) ;
+    double delta = result - sum ( c ) ;
+
+    cout << "eval(" << c << ") = " << result << " -> delta = " << delta << endl ;
   }
 }
diff --git a/example/gsm.cc b/example/gsm.cc
index 8a6718f..62e5e82 100644
--- a/example/gsm.cc
+++ b/example/gsm.cc
@@ -33,11 +33,12 @@
 ///
 /// implementation of gsm.cc, performing the calculation of the
 /// gradient squared magnitude in a loop using two evaluators for
-/// the two derivatives
+/// the two derivatives.
 ///
 /// compile with:
-/// clang++ -std=c++11 -march=native -o gsm -O3 -pthread -DUSE_VC=1 gsm.cc -lvigraimpex -lVc
-/// g++ also works.
+/// clang++ -std=c++11 -march=native -o gsm -O3 -pthread -DUSE_VC gsm.cc -lvigraimpex -lVc
+///
+/// invoke passing an image file. the result will be written to 'gsm.tif'
 
 #include <vspline/vspline.h>
 
diff --git a/example/gsm2.cc b/example/gsm2.cc
index 6612d80..dcf5718 100644
--- a/example/gsm2.cc
+++ b/example/gsm2.cc
@@ -36,9 +36,9 @@
 /// the whole operation is multithreaded and potentially vectorized.
 ///
 /// compile with:
-/// clang++ -std=c++11 -march=native -o gsm -O3 -pthread -DUSE_VC=1 gsm.cc -lvigraimpex -lVc
-/// g++ also works. And, as ever, you can compile without USE_VC, if you haven't got Vc
-/// or you don't want to use it.
+/// clang++ -std=c++11 -march=native -o gsm -O3 -pthread -DUSE_VC gsm.cc -lvigraimpex -lVc
+///
+/// invoke passing an image file. the result will be written to 'gsm2.tif'
 
 #include <vspline/vspline.h>
 
@@ -202,7 +202,7 @@ int main ( int argc , char * argv[] )
   // and are rewarded with being able to use the evaluator with vspline's
   // high-level code for a very fast implementation of our gsm problem.
   
-  vspline::index_remap < ev_gsm , 2 > ( ev , target ) ;
+  vspline::index_remap < ev_gsm > ( ev , target ) ;
 
   // store the result with vigra impex
 
diff --git a/example/pano_extract.cc b/example/pano_extract.cc
index 050557f..80db098 100644
--- a/example/pano_extract.cc
+++ b/example/pano_extract.cc
@@ -9,7 +9,7 @@
 /*  by the Free Software Foundation, either version 3 of the License,    */
 /*  or (at your option) any later version.                               */
 /*                                                                       */
-/*  pv is distributed in the hope that it will be useful,                */
+/*  pano_extract is distributed in the hope that it will be useful,      */
 /*  but WITHOUT ANY WARRANTY; without even the implied warranty of       */
 /*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        */
 /*  GNU General Public License for more details.                         */
@@ -25,6 +25,38 @@
 ///
 /// This program extracts a rectilinear image from a  from a (full) spherical
 /// panorama with a given size, horizontal field of view, yaw, pitch and roll
+///
+/// compile: clang++ -std=c++11 -march=native -o pano_extract -O3 -pthread -DUSE_VC=1 pano_extract.cc -lVc -lvigraimpex
+///
+/// invoke: pano_extract [options] imagefile
+///
+/// for example, this will extract a 1500X1500 pixel zenith extract from in.tif:
+///
+/// ./pano_extract -p90 -w1500 -h1500 -o xx.tif in.tif
+///
+/// options are:
+///
+/// -r roll
+/// -p pitch
+/// -y yaw
+/// -w width of extracted section
+/// -h height of same
+/// -d degree of b-spline to use for interpolation
+/// -v horizontal field of view of the extracted section
+/// -o output file name
+///
+/// all options have defaults, but the input image must be specified.
+///
+/// This program is a precursor to pv, my panorama viewer. Here I first wrote
+/// a program using a coordinate transformation together with b-spline interpolation,
+/// to get a feel for the process.
+/// The code isn't very well-maintained, since I shifted my focus to pv, but it's
+/// functioning and may even be moderately useful to extract views from full spherical
+/// panoramas. The most useful bit is perhaps quickly extracting zenith and nadir views
+/// with simple one-line commands. It's not tweaked much, though, and therefore isn't
+/// very fast. Could do with a bit of TLC.
+///
+/// Please note that this program is under GPL v3.
 
 #include <cmath>
 
@@ -762,7 +794,7 @@ void process_image ( const char * name ,
   start = std::chrono::system_clock::now();
 #endif
   
-  typedef evaluator < 2 , pixel_type , rc_type , int > eval_type ;
+  typedef evaluator < coordinate_type , pixel_type > eval_type ;
   eval_type ev ( bspl ) ;
   
   typedef projector < eval_type ,
@@ -773,7 +805,7 @@ void process_image ( const char * name ,
 
   // now we can invoke the processing chain in prj for all pixels in 'result':
 
-  vspline::index_remap < prj_type , 2 > ( prj , result ) ;
+  vspline::index_remap < prj_type > ( prj , result ) ;
 
   if ( extra_bands )
   {
@@ -794,7 +826,7 @@ void process_image ( const char * name ,
     // instead of pixels of three RGB values
 
     // create an evaluator for bspl_alpha
-    typedef evaluator < 2 , float , rc_type , int > alpha_ev_type ;
+    typedef evaluator < coordinate_type , float > alpha_ev_type ;
     alpha_ev_type ev_alpha ( bspl_alpha ) ;
 
     typedef projector < alpha_ev_type ,
@@ -805,7 +837,7 @@ void process_image ( const char * name ,
     alpha_prj_type alpha_prj ( ev_alpha , tf_se ) ;
   
     // now we do a transformation-based remap of the alpha channel
-    vspline::index_remap < alpha_prj_type , 2 >
+    vspline::index_remap < alpha_prj_type >
       ( alpha_prj , alpha_result ) ;
   }
 
diff --git a/example/roundtrip.cc b/example/roundtrip.cc
index dbf27e4..c7dda33 100644
--- a/example/roundtrip.cc
+++ b/example/roundtrip.cc
@@ -37,9 +37,18 @@
 /// spline degrees and in float and double arithmetic, the processing times
 /// and differences between input and restored signal are printed to cout.
 ///
-/// compile with:
+/// obviously, this is not a useful program, it's to make sure the engine functions as
+/// intended and all combinations of float and double as values and coordinates compile
+/// and function as intended, also giving an impression of the speed of processing.
+/// On my system I can see here that vectorization with double values doesn't perform
+/// better than the unvectorized code.
+///
+/// compile:
 /// clang++ -std=c++11 -march=native -o roundtrip -O3 -pthread -DUSE_VC=1 roundtrip.cc -lvigraimpex -lVc
-/// g++ also works.
+///
+/// invoke: roundtrip <image file>
+///
+/// there is no image output.
 
 #include <vspline/vspline.h>
 
@@ -235,7 +244,7 @@ void run_test ( view_type & data ,
 #endif
   
   for ( int times = 0 ; times < TIMES ; times++ )
-    vspline::index_remap < eval_type , 2 >
+    vspline::index_remap < eval_type >
       ( ev , target , use_vc ) ;
 
 #ifdef PRINT_ELAPSED
diff --git a/example/slice.cc b/example/slice.cc
index d3e19de..6047db0 100644
--- a/example/slice.cc
+++ b/example/slice.cc
@@ -68,10 +68,6 @@ int main ( int argc , char * argv[] )
   vspline::bspline < voxel_type , 3 >
     space ( vigra::Shape3 ( 10 , 10 , 10 ) , 5 , bcv ) ;
   
-  auto red_channel = space.get_channel_view ( 0 ) ;
-  auto green_channel = space.get_channel_view ( 1 ) ;
-  auto blue_channel = space.get_channel_view ( 2 ) ;
-
   // fill the b-spline's core with a three-way gradient
   for ( int z = 0 ; z < 10 ; z++ )
   {
diff --git a/example/splinus.cc b/example/splinus.cc
index e6b6a78..b84abf2 100644
--- a/example/splinus.cc
+++ b/example/splinus.cc
@@ -83,6 +83,7 @@ int main ( int argc , char * argv[] )
 
   while ( true )
   {
+    std::cout << " > " ;
     double x ;
     std::cin >> x ;                // get an angle
     double xs = x * M_PI / 180.0 ; // sin() uses radians 
diff --git a/example/times.txt b/example/times.txt
deleted file mode 100644
index ff84a8e..0000000
--- a/example/times.txt
+++ /dev/null
@@ -1,3678 +0,0 @@
-testing float data, float coordinates
-Image information:
-  file format: JPEG
-  width:       1920
-  height:      1079
-  pixel type:  UINT8
-  color image: yes (number of channels: 3)
-testing bc code MIRROR spline degree 2
-avg 10 x prefilter:........................ 11.300000 ms
-avg 10 x remap1 from pre-split coordinates: 41.099998 ms
-warped image diff Mean: 0.000019
-warped image diff Maximum: 0.000326
-avg 10 x remap1 from unsplit coordinates:.. 48.500000 ms
-warped image diff Mean: 0.000019
-warped image diff Maximum: 0.000326
-avg 10 x remap with internal spline:....... 64.900002 ms
-warped image diff Mean: 0.000019
-warped image diff Maximum: 0.000326
-avg 10 x remap with functor & internal bspl 67.000000 ms
-avg 10 x remap with functor & external bspl 49.599998 ms
-warped image diff Mean: 0.000019
-warped image diff Maximum: 0.000326
-difference original data/restored data:
-warped image diff Mean: 0.000018
-warped image diff Maximum: 0.000301
-
-testing bc code MIRROR spline degree 2 using Vc
-avg 10 x prefilter:........................ 8.800000 ms
-avg 10 x remap1 from pre-split coordinates: 12.000000 ms
-warped image diff Mean: 0.000018
-warped image diff Maximum: 0.000301
-avg 10 x remap1 from unsplit coordinates:.. 13.900000 ms
-warped image diff Mean: 0.000018
-warped image diff Maximum: 0.000301
-avg 10 x remap with internal spline:....... 30.900000 ms
-warped image diff Mean: 0.000018
-warped image diff Maximum: 0.000301
-avg 10 x remap with functor & internal bspl 32.299999 ms
-avg 10 x remap with functor & external bspl 15.900000 ms
-warped image diff Mean: 0.000018
-warped image diff Maximum: 0.000301
-difference original data/restored data:
-warped image diff Mean: 0.000018
-warped image diff Maximum: 0.000301
-
-testing bc code MIRROR spline degree 3
-avg 10 x prefilter:........................ 10.600000 ms
-avg 10 x remap1 from pre-split coordinates: 61.900002 ms
-warped image diff Mean: 0.000024
-warped image diff Maximum: 0.000268
-avg 10 x remap1 from unsplit coordinates:.. 68.599998 ms
-warped image diff Mean: 0.000024
-warped image diff Maximum: 0.000268
-avg 10 x remap with internal spline:....... 85.599998 ms
-warped image diff Mean: 0.000024
-warped image diff Maximum: 0.000268
-avg 10 x remap with functor & internal bspl 89.300003 ms
-avg 10 x remap with functor & external bspl 70.599998 ms
-warped image diff Mean: 0.000024
-warped image diff Maximum: 0.000268
-difference original data/restored data:
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000249
-
-testing bc code MIRROR spline degree 3 using Vc
-avg 10 x prefilter:........................ 8.900000 ms
-avg 10 x remap1 from pre-split coordinates: 17.900000 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000249
-avg 10 x remap1 from unsplit coordinates:.. 19.100000 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000249
-avg 10 x remap with internal spline:....... 34.700001 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000249
-avg 10 x remap with functor & internal bspl 35.599998 ms
-avg 10 x remap with functor & external bspl 20.000000 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000249
-difference original data/restored data:
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000249
-
-testing bc code MIRROR spline degree 4
-avg 10 x prefilter:........................ 13.500000 ms
-avg 10 x remap1 from pre-split coordinates: 89.800003 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000303
-avg 10 x remap1 from unsplit coordinates:.. 97.199997 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000303
-avg 10 x remap with internal spline:....... 118.099998 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000303
-avg 10 x remap with functor & internal bspl 119.599998 ms
-avg 10 x remap with functor & external bspl 98.400002 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000303
-difference original data/restored data:
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000292
-
-testing bc code MIRROR spline degree 4 using Vc
-avg 10 x prefilter:........................ 9.700000 ms
-avg 10 x remap1 from pre-split coordinates: 25.799999 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000292
-avg 10 x remap1 from unsplit coordinates:.. 29.200001 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000292
-avg 10 x remap with internal spline:....... 44.000000 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000292
-avg 10 x remap with functor & internal bspl 44.900002 ms
-avg 10 x remap with functor & external bspl 28.600000 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000292
-difference original data/restored data:
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000292
-
-testing bc code MIRROR spline degree 5
-avg 10 x prefilter:........................ 13.500000 ms
-avg 10 x remap1 from pre-split coordinates: 124.000000 ms
-warped image diff Mean: 0.000024
-warped image diff Maximum: 0.000293
-avg 10 x remap1 from unsplit coordinates:.. 133.000000 ms
-warped image diff Mean: 0.000024
-warped image diff Maximum: 0.000293
-avg 10 x remap with internal spline:....... 151.399994 ms
-warped image diff Mean: 0.000024
-warped image diff Maximum: 0.000293
-avg 10 x remap with functor & internal bspl 152.199997 ms
-avg 10 x remap with functor & external bspl 131.600006 ms
-warped image diff Mean: 0.000024
-warped image diff Maximum: 0.000293
-difference original data/restored data:
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000293
-
-testing bc code MIRROR spline degree 5 using Vc
-avg 10 x prefilter:........................ 9.100000 ms
-avg 10 x remap1 from pre-split coordinates: 34.700001 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000293
-avg 10 x remap1 from unsplit coordinates:.. 37.799999 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000293
-avg 10 x remap with internal spline:....... 52.000000 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000293
-avg 10 x remap with functor & internal bspl 53.599998 ms
-avg 10 x remap with functor & external bspl 37.799999 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000293
-difference original data/restored data:
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000293
-
-testing bc code MIRROR spline degree 6
-avg 10 x prefilter:........................ 17.799999 ms
-avg 10 x remap1 from pre-split coordinates: 160.899994 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000265
-avg 10 x remap1 from unsplit coordinates:.. 167.899994 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000265
-avg 10 x remap with internal spline:....... 194.000000 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000265
-avg 10 x remap with functor & internal bspl 196.300003 ms
-avg 10 x remap with functor & external bspl 171.600006 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000265
-difference original data/restored data:
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000274
-
-testing bc code MIRROR spline degree 6 using Vc
-avg 10 x prefilter:........................ 9.700000 ms
-avg 10 x remap1 from pre-split coordinates: 45.700001 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000274
-avg 10 x remap1 from unsplit coordinates:.. 47.799999 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000274
-avg 10 x remap with internal spline:....... 64.199997 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000274
-avg 10 x remap with functor & internal bspl 65.900002 ms
-avg 10 x remap with functor & external bspl 48.599998 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000274
-difference original data/restored data:
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000274
-
-testing bc code MIRROR spline degree 7
-avg 10 x prefilter:........................ 17.799999 ms
-avg 10 x remap1 from pre-split coordinates: 207.300003 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000467
-avg 10 x remap1 from unsplit coordinates:.. 215.699997 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000467
-avg 10 x remap with internal spline:....... 239.899994 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000467
-avg 10 x remap with functor & internal bspl 238.699997 ms
-avg 10 x remap with functor & external bspl 215.699997 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000467
-difference original data/restored data:
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000451
-
-testing bc code MIRROR spline degree 7 using Vc
-avg 10 x prefilter:........................ 10.000000 ms
-avg 10 x remap1 from pre-split coordinates: 58.900002 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000451
-avg 10 x remap1 from unsplit coordinates:.. 59.900002 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000451
-avg 10 x remap with internal spline:....... 76.400002 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000451
-avg 10 x remap with functor & internal bspl 78.000000 ms
-avg 10 x remap with functor & external bspl 60.000000 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000451
-difference original data/restored data:
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000451
-
-testing bc code REFLECT spline degree 2
-avg 10 x prefilter:........................ 10.400000 ms
-avg 10 x remap1 from pre-split coordinates: 40.099998 ms
-warped image diff Mean: 0.000018
-warped image diff Maximum: 0.000128
-avg 10 x remap1 from unsplit coordinates:.. 49.200001 ms
-warped image diff Mean: 0.000018
-warped image diff Maximum: 0.000128
-avg 10 x remap with internal spline:....... 64.800003 ms
-warped image diff Mean: 0.000018
-warped image diff Maximum: 0.000128
-avg 10 x remap with functor & internal bspl 67.199997 ms
-avg 10 x remap with functor & external bspl 49.900002 ms
-warped image diff Mean: 0.000018
-warped image diff Maximum: 0.000128
-difference original data/restored data:
-warped image diff Mean: 0.000017
-warped image diff Maximum: 0.000124
-
-testing bc code REFLECT spline degree 2 using Vc
-avg 10 x prefilter:........................ 8.700000 ms
-avg 10 x remap1 from pre-split coordinates: 12.200000 ms
-warped image diff Mean: 0.000017
-warped image diff Maximum: 0.000124
-avg 10 x remap1 from unsplit coordinates:.. 13.600000 ms
-warped image diff Mean: 0.000017
-warped image diff Maximum: 0.000124
-avg 10 x remap with internal spline:....... 28.299999 ms
-warped image diff Mean: 0.000017
-warped image diff Maximum: 0.000124
-avg 10 x remap with functor & internal bspl 29.700001 ms
-avg 10 x remap with functor & external bspl 14.300000 ms
-warped image diff Mean: 0.000017
-warped image diff Maximum: 0.000124
-difference original data/restored data:
-warped image diff Mean: 0.000017
-warped image diff Maximum: 0.000124
-
-testing bc code REFLECT spline degree 3
-avg 10 x prefilter:........................ 10.200000 ms
-avg 10 x remap1 from pre-split coordinates: 61.099998 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000111
-avg 10 x remap1 from unsplit coordinates:.. 70.000000 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000111
-avg 10 x remap with internal spline:....... 86.099998 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000111
-avg 10 x remap with functor & internal bspl 88.099998 ms
-avg 10 x remap with functor & external bspl 70.599998 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000111
-difference original data/restored data:
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000111
-
-testing bc code REFLECT spline degree 3 using Vc
-avg 10 x prefilter:........................ 8.700000 ms
-avg 10 x remap1 from pre-split coordinates: 17.900000 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000111
-avg 10 x remap1 from unsplit coordinates:.. 20.500000 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000111
-avg 10 x remap with internal spline:....... 35.900002 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000111
-avg 10 x remap with functor & internal bspl 37.200001 ms
-avg 10 x remap with functor & external bspl 21.200001 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000111
-difference original data/restored data:
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000111
-
-testing bc code REFLECT spline degree 4
-avg 10 x prefilter:........................ 13.700000 ms
-avg 10 x remap1 from pre-split coordinates: 89.300003 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000179
-avg 10 x remap1 from unsplit coordinates:.. 97.500000 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000179
-avg 10 x remap with internal spline:....... 116.900002 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000179
-avg 10 x remap with functor & internal bspl 119.099998 ms
-avg 10 x remap with functor & external bspl 98.500000 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000179
-difference original data/restored data:
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000173
-
-testing bc code REFLECT spline degree 4 using Vc
-avg 10 x prefilter:........................ 9.500000 ms
-avg 10 x remap1 from pre-split coordinates: 25.200001 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000173
-avg 10 x remap1 from unsplit coordinates:.. 28.200001 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000173
-avg 10 x remap with internal spline:....... 43.599998 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000173
-avg 10 x remap with functor & internal bspl 44.799999 ms
-avg 10 x remap with functor & external bspl 27.600000 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000173
-difference original data/restored data:
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000173
-
-testing bc code REFLECT spline degree 5
-avg 10 x prefilter:........................ 13.700000 ms
-avg 10 x remap1 from pre-split coordinates: 123.300003 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000198
-avg 10 x remap1 from unsplit coordinates:.. 133.199997 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000198
-avg 10 x remap with internal spline:....... 152.199997 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000198
-avg 10 x remap with functor & internal bspl 153.199997 ms
-avg 10 x remap with functor & external bspl 132.399994 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000198
-difference original data/restored data:
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000205
-
-testing bc code REFLECT spline degree 5 using Vc
-avg 10 x prefilter:........................ 9.300000 ms
-avg 10 x remap1 from pre-split coordinates: 34.500000 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000205
-avg 10 x remap1 from unsplit coordinates:.. 35.900002 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000205
-avg 10 x remap with internal spline:....... 52.200001 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000205
-avg 10 x remap with functor & internal bspl 53.700001 ms
-avg 10 x remap with functor & external bspl 37.400002 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000205
-difference original data/restored data:
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000205
-
-testing bc code REFLECT spline degree 6
-avg 10 x prefilter:........................ 18.000000 ms
-avg 10 x remap1 from pre-split coordinates: 162.000000 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000283
-avg 10 x remap1 from unsplit coordinates:.. 171.399994 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000283
-avg 10 x remap with internal spline:....... 195.600006 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000283
-avg 10 x remap with functor & internal bspl 198.000000 ms
-avg 10 x remap with functor & external bspl 172.500000 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000283
-difference original data/restored data:
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000285
-
-testing bc code REFLECT spline degree 6 using Vc
-avg 10 x prefilter:........................ 9.700000 ms
-avg 10 x remap1 from pre-split coordinates: 47.000000 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000285
-avg 10 x remap1 from unsplit coordinates:.. 47.099998 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000285
-avg 10 x remap with internal spline:....... 64.699997 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000285
-avg 10 x remap with functor & internal bspl 66.099998 ms
-avg 10 x remap with functor & external bspl 48.599998 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000285
-difference original data/restored data:
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000285
-
-testing bc code REFLECT spline degree 7
-avg 10 x prefilter:........................ 18.000000 ms
-avg 10 x remap1 from pre-split coordinates: 208.399994 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000324
-avg 10 x remap1 from unsplit coordinates:.. 217.300003 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000324
-avg 10 x remap with internal spline:....... 240.199997 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000324
-avg 10 x remap with functor & internal bspl 241.899994 ms
-avg 10 x remap with functor & external bspl 215.199997 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000324
-difference original data/restored data:
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000318
-
-testing bc code REFLECT spline degree 7 using Vc
-avg 10 x prefilter:........................ 10.500000 ms
-avg 10 x remap1 from pre-split coordinates: 58.700001 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000318
-avg 10 x remap1 from unsplit coordinates:.. 61.500000 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000318
-avg 10 x remap with internal spline:....... 77.800003 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000318
-avg 10 x remap with functor & internal bspl 79.500000 ms
-avg 10 x remap with functor & external bspl 60.900002 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000318
-difference original data/restored data:
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000318
-
-testing bc code NATURAL spline degree 2
-avg 10 x prefilter:........................ 10.500000 ms
-avg 10 x remap1 from pre-split coordinates: 40.200001 ms
-warped image diff Mean: 0.000021
-warped image diff Maximum: 0.000568
-avg 10 x remap1 from unsplit coordinates:.. 48.299999 ms
-warped image diff Mean: 0.000021
-warped image diff Maximum: 0.000568
-avg 10 x remap with internal spline:....... 69.000000 ms
-warped image diff Mean: 0.000021
-warped image diff Maximum: 0.000568
-avg 10 x remap with functor & internal bspl 67.800003 ms
-avg 10 x remap with functor & external bspl 49.200001 ms
-warped image diff Mean: 0.000021
-warped image diff Maximum: 0.000568
-difference original data/restored data:
-warped image diff Mean: 0.000019
-warped image diff Maximum: 0.000583
-
-testing bc code NATURAL spline degree 2 using Vc
-avg 10 x prefilter:........................ 8.400000 ms
-avg 10 x remap1 from pre-split coordinates: 12.100000 ms
-warped image diff Mean: 0.000019
-warped image diff Maximum: 0.000583
-avg 10 x remap1 from unsplit coordinates:.. 14.600000 ms
-warped image diff Mean: 0.000019
-warped image diff Maximum: 0.000583
-avg 10 x remap with internal spline:....... 29.100000 ms
-warped image diff Mean: 0.000019
-warped image diff Maximum: 0.000583
-avg 10 x remap with functor & internal bspl 30.299999 ms
-avg 10 x remap with functor & external bspl 15.600000 ms
-warped image diff Mean: 0.000019
-warped image diff Maximum: 0.000583
-difference original data/restored data:
-warped image diff Mean: 0.000019
-warped image diff Maximum: 0.000583
-
-testing bc code NATURAL spline degree 3
-avg 10 x prefilter:........................ 10.500000 ms
-avg 10 x remap1 from pre-split coordinates: 61.599998 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000521
-avg 10 x remap1 from unsplit coordinates:.. 68.800003 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000521
-avg 10 x remap with internal spline:....... 85.099998 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000521
-avg 10 x remap with functor & internal bspl 86.599998 ms
-avg 10 x remap with functor & external bspl 69.099998 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000521
-difference original data/restored data:
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000530
-
-testing bc code NATURAL spline degree 3 using Vc
-avg 10 x prefilter:........................ 8.900000 ms
-avg 10 x remap1 from pre-split coordinates: 17.900000 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000530
-avg 10 x remap1 from unsplit coordinates:.. 20.000000 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000530
-avg 10 x remap with internal spline:....... 34.599998 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000530
-avg 10 x remap with functor & internal bspl 36.299999 ms
-avg 10 x remap with functor & external bspl 20.799999 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000530
-difference original data/restored data:
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000530
-
-testing bc code NATURAL spline degree 4
-avg 10 x prefilter:........................ 13.800000 ms
-avg 10 x remap1 from pre-split coordinates: 88.699997 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000689
-avg 10 x remap1 from unsplit coordinates:.. 98.500000 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000689
-avg 10 x remap with internal spline:....... 121.599998 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000689
-avg 10 x remap with functor & internal bspl 122.300003 ms
-avg 10 x remap with functor & external bspl 99.000000 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000689
-difference original data/restored data:
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000677
-
-testing bc code NATURAL spline degree 4 using Vc
-avg 10 x prefilter:........................ 9.600000 ms
-avg 10 x remap1 from pre-split coordinates: 25.799999 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000677
-avg 10 x remap1 from unsplit coordinates:.. 28.400000 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000677
-avg 10 x remap with internal spline:....... 45.599998 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000677
-avg 10 x remap with functor & internal bspl 46.500000 ms
-avg 10 x remap with functor & external bspl 28.900000 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000677
-difference original data/restored data:
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000677
-
-testing bc code NATURAL spline degree 5
-avg 10 x prefilter:........................ 14.000000 ms
-avg 10 x remap1 from pre-split coordinates: 124.800003 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000805
-avg 10 x remap1 from unsplit coordinates:.. 130.000000 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000805
-avg 10 x remap with internal spline:....... 150.800003 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000805
-avg 10 x remap with functor & internal bspl 151.600006 ms
-avg 10 x remap with functor & external bspl 130.199997 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000805
-difference original data/restored data:
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000813
-
-testing bc code NATURAL spline degree 5 using Vc
-avg 10 x prefilter:........................ 9.500000 ms
-avg 10 x remap1 from pre-split coordinates: 35.099998 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000813
-avg 10 x remap1 from unsplit coordinates:.. 38.599998 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000813
-avg 10 x remap with internal spline:....... 52.000000 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000813
-avg 10 x remap with functor & internal bspl 53.799999 ms
-avg 10 x remap with functor & external bspl 37.599998 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000813
-difference original data/restored data:
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000813
-
-testing bc code NATURAL spline degree 6
-avg 10 x prefilter:........................ 18.299999 ms
-avg 10 x remap1 from pre-split coordinates: 162.399994 ms
-warped image diff Mean: 0.000032
-warped image diff Maximum: 0.000949
-avg 10 x remap1 from unsplit coordinates:.. 170.100006 ms
-warped image diff Mean: 0.000032
-warped image diff Maximum: 0.000949
-avg 10 x remap with internal spline:....... 195.199997 ms
-warped image diff Mean: 0.000032
-warped image diff Maximum: 0.000949
-avg 10 x remap with functor & internal bspl 196.100006 ms
-avg 10 x remap with functor & external bspl 170.800003 ms
-warped image diff Mean: 0.000032
-warped image diff Maximum: 0.000949
-difference original data/restored data:
-warped image diff Mean: 0.000031
-warped image diff Maximum: 0.000948
-
-testing bc code NATURAL spline degree 6 using Vc
-avg 10 x prefilter:........................ 9.600000 ms
-avg 10 x remap1 from pre-split coordinates: 46.099998 ms
-warped image diff Mean: 0.000031
-warped image diff Maximum: 0.000948
-avg 10 x remap1 from unsplit coordinates:.. 48.000000 ms
-warped image diff Mean: 0.000031
-warped image diff Maximum: 0.000948
-avg 10 x remap with internal spline:....... 63.799999 ms
-warped image diff Mean: 0.000031
-warped image diff Maximum: 0.000948
-avg 10 x remap with functor & internal bspl 64.900002 ms
-avg 10 x remap with functor & external bspl 48.799999 ms
-warped image diff Mean: 0.000031
-warped image diff Maximum: 0.000948
-difference original data/restored data:
-warped image diff Mean: 0.000031
-warped image diff Maximum: 0.000948
-
-testing bc code NATURAL spline degree 7
-avg 10 x prefilter:........................ 18.000000 ms
-avg 10 x remap1 from pre-split coordinates: 207.899994 ms
-warped image diff Mean: 0.000038
-warped image diff Maximum: 0.001432
-avg 10 x remap1 from unsplit coordinates:.. 214.600006 ms
-warped image diff Mean: 0.000038
-warped image diff Maximum: 0.001432
-avg 10 x remap with internal spline:....... 240.000000 ms
-warped image diff Mean: 0.000038
-warped image diff Maximum: 0.001432
-avg 10 x remap with functor & internal bspl 239.100006 ms
-avg 10 x remap with functor & external bspl 212.899994 ms
-warped image diff Mean: 0.000038
-warped image diff Maximum: 0.001432
-difference original data/restored data:
-warped image diff Mean: 0.000038
-warped image diff Maximum: 0.001432
-
-testing bc code NATURAL spline degree 7 using Vc
-avg 10 x prefilter:........................ 10.000000 ms
-avg 10 x remap1 from pre-split coordinates: 58.299999 ms
-warped image diff Mean: 0.000037
-warped image diff Maximum: 0.001432
-avg 10 x remap1 from unsplit coordinates:.. 59.299999 ms
-warped image diff Mean: 0.000037
-warped image diff Maximum: 0.001432
-avg 10 x remap with internal spline:....... 79.000000 ms
-warped image diff Mean: 0.000037
-warped image diff Maximum: 0.001432
-avg 10 x remap with functor & internal bspl 79.800003 ms
-avg 10 x remap with functor & external bspl 61.000000 ms
-warped image diff Mean: 0.000037
-warped image diff Maximum: 0.001432
-difference original data/restored data:
-warped image diff Mean: 0.000037
-warped image diff Maximum: 0.001432
-
-testing bc code PERIODIC spline degree 2
-avg 10 x prefilter:........................ 10.700000 ms
-avg 10 x remap1 from pre-split coordinates: 40.400002 ms
-warped image diff Mean: 0.000018
-warped image diff Maximum: 0.000220
-avg 10 x remap1 from unsplit coordinates:.. 49.299999 ms
-warped image diff Mean: 0.000018
-warped image diff Maximum: 0.000220
-avg 10 x remap with internal spline:....... 65.099998 ms
-warped image diff Mean: 0.000018
-warped image diff Maximum: 0.000220
-avg 10 x remap with functor & internal bspl 67.099998 ms
-avg 10 x remap with functor & external bspl 50.000000 ms
-warped image diff Mean: 0.000018
-warped image diff Maximum: 0.000220
-difference original data/restored data:
-warped image diff Mean: 0.000017
-warped image diff Maximum: 0.000220
-
-testing bc code PERIODIC spline degree 2 using Vc
-avg 10 x prefilter:........................ 8.500000 ms
-avg 10 x remap1 from pre-split coordinates: 12.500000 ms
-warped image diff Mean: 0.000017
-warped image diff Maximum: 0.000220
-avg 10 x remap1 from unsplit coordinates:.. 14.200000 ms
-warped image diff Mean: 0.000017
-warped image diff Maximum: 0.000220
-avg 10 x remap with internal spline:....... 31.200001 ms
-warped image diff Mean: 0.000017
-warped image diff Maximum: 0.000220
-avg 10 x remap with functor & internal bspl 32.599998 ms
-avg 10 x remap with functor & external bspl 14.900000 ms
-warped image diff Mean: 0.000017
-warped image diff Maximum: 0.000220
-difference original data/restored data:
-warped image diff Mean: 0.000017
-warped image diff Maximum: 0.000220
-
-testing bc code PERIODIC spline degree 3
-avg 10 x prefilter:........................ 10.500000 ms
-avg 10 x remap1 from pre-split coordinates: 61.000000 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000163
-avg 10 x remap1 from unsplit coordinates:.. 70.099998 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000163
-avg 10 x remap with internal spline:....... 85.800003 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000163
-avg 10 x remap with functor & internal bspl 88.199997 ms
-avg 10 x remap with functor & external bspl 70.400002 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000163
-difference original data/restored data:
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000164
-
-testing bc code PERIODIC spline degree 3 using Vc
-avg 10 x prefilter:........................ 9.200000 ms
-avg 10 x remap1 from pre-split coordinates: 18.000000 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000164
-avg 10 x remap1 from unsplit coordinates:.. 20.100000 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000164
-avg 10 x remap with internal spline:....... 34.500000 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000164
-avg 10 x remap with functor & internal bspl 36.000000 ms
-avg 10 x remap with functor & external bspl 20.799999 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000164
-difference original data/restored data:
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000164
-
-testing bc code PERIODIC spline degree 4
-avg 10 x prefilter:........................ 13.700000 ms
-avg 10 x remap1 from pre-split coordinates: 90.599998 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000194
-avg 10 x remap1 from unsplit coordinates:.. 98.800003 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000194
-avg 10 x remap with internal spline:....... 119.900002 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000194
-avg 10 x remap with functor & internal bspl 123.099998 ms
-avg 10 x remap with functor & external bspl 99.400002 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000194
-difference original data/restored data:
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000194
-
-testing bc code PERIODIC spline degree 4 using Vc
-avg 10 x prefilter:........................ 9.400000 ms
-avg 10 x remap1 from pre-split coordinates: 25.900000 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000194
-avg 10 x remap1 from unsplit coordinates:.. 29.000000 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000194
-avg 10 x remap with internal spline:....... 43.099998 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000194
-avg 10 x remap with functor & internal bspl 44.400002 ms
-avg 10 x remap with functor & external bspl 28.100000 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000194
-difference original data/restored data:
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000194
-
-testing bc code PERIODIC spline degree 5
-avg 10 x prefilter:........................ 14.000000 ms
-avg 10 x remap1 from pre-split coordinates: 123.900002 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000197
-avg 10 x remap1 from unsplit coordinates:.. 130.899994 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000197
-avg 10 x remap with internal spline:....... 153.100006 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000197
-avg 10 x remap with functor & internal bspl 153.699997 ms
-avg 10 x remap with functor & external bspl 132.100006 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000197
-difference original data/restored data:
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000197
-
-testing bc code PERIODIC spline degree 5 using Vc
-avg 10 x prefilter:........................ 9.400000 ms
-avg 10 x remap1 from pre-split coordinates: 34.799999 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000197
-avg 10 x remap1 from unsplit coordinates:.. 37.200001 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000197
-avg 10 x remap with internal spline:....... 52.799999 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000197
-avg 10 x remap with functor & internal bspl 54.500000 ms
-avg 10 x remap with functor & external bspl 38.099998 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000197
-difference original data/restored data:
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000197
-
-testing bc code PERIODIC spline degree 6
-avg 10 x prefilter:........................ 18.000000 ms
-avg 10 x remap1 from pre-split coordinates: 162.899994 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000176
-avg 10 x remap1 from unsplit coordinates:.. 171.699997 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000176
-avg 10 x remap with internal spline:....... 193.899994 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000176
-avg 10 x remap with functor & internal bspl 198.500000 ms
-avg 10 x remap with functor & external bspl 172.899994 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000176
-difference original data/restored data:
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000179
-
-testing bc code PERIODIC spline degree 6 using Vc
-avg 10 x prefilter:........................ 9.900000 ms
-avg 10 x remap1 from pre-split coordinates: 46.500000 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000179
-avg 10 x remap1 from unsplit coordinates:.. 49.000000 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000179
-avg 10 x remap with internal spline:....... 66.599998 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000179
-avg 10 x remap with functor & internal bspl 67.800003 ms
-avg 10 x remap with functor & external bspl 48.599998 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000179
-difference original data/restored data:
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000179
-
-testing bc code PERIODIC spline degree 7
-avg 10 x prefilter:........................ 18.100000 ms
-avg 10 x remap1 from pre-split coordinates: 208.500000 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000374
-avg 10 x remap1 from unsplit coordinates:.. 216.100006 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000374
-avg 10 x remap with internal spline:....... 241.000000 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000374
-avg 10 x remap with functor & internal bspl 240.699997 ms
-avg 10 x remap with functor & external bspl 215.000000 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000374
-difference original data/restored data:
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000380
-
-testing bc code PERIODIC spline degree 7 using Vc
-avg 10 x prefilter:........................ 10.000000 ms
-avg 10 x remap1 from pre-split coordinates: 59.000000 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000380
-avg 10 x remap1 from unsplit coordinates:.. 59.200001 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000380
-avg 10 x remap with internal spline:....... 78.900002 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000380
-avg 10 x remap with functor & internal bspl 80.800003 ms
-avg 10 x remap with functor & external bspl 61.000000 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000380
-difference original data/restored data:
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000380
-
-
-testing double data, double coordinates
-Image information:
-  file format: JPEG
-  width:       1920
-  height:      1079
-  pixel type:  UINT8
-  color image: yes (number of channels: 3)
-testing bc code MIRROR spline degree 2
-avg 10 x prefilter:........................ 14.800000 ms
-avg 10 x remap1 from pre-split coordinates: 28.299999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 38.900002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 65.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 68.500000 ms
-avg 10 x remap with functor & external bspl 39.799999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code MIRROR spline degree 2 using Vc
-avg 10 x prefilter:........................ 15.300000 ms
-avg 10 x remap1 from pre-split coordinates: 13.400000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 18.799999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 48.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 47.900002 ms
-avg 10 x remap with functor & external bspl 19.200001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code MIRROR spline degree 3
-avg 10 x prefilter:........................ 15.000000 ms
-avg 10 x remap1 from pre-split coordinates: 42.799999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 52.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 79.699997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 82.000000 ms
-avg 10 x remap with functor & external bspl 53.299999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code MIRROR spline degree 3 using Vc
-avg 10 x prefilter:........................ 15.600000 ms
-avg 10 x remap1 from pre-split coordinates: 19.900000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 23.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 52.599998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 53.500000 ms
-avg 10 x remap with functor & external bspl 23.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code MIRROR spline degree 4
-avg 10 x prefilter:........................ 16.900000 ms
-avg 10 x remap1 from pre-split coordinates: 63.200001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 73.199997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 102.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 105.300003 ms
-avg 10 x remap with functor & external bspl 73.699997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code MIRROR spline degree 4 using Vc
-avg 10 x prefilter:........................ 15.500000 ms
-avg 10 x remap1 from pre-split coordinates: 28.400000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 33.700001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 63.200001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 63.200001 ms
-avg 10 x remap with functor & external bspl 33.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code MIRROR spline degree 5
-avg 10 x prefilter:........................ 16.900000 ms
-avg 10 x remap1 from pre-split coordinates: 86.800003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 95.599998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 125.199997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 127.300003 ms
-avg 10 x remap with functor & external bspl 96.300003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code MIRROR spline degree 5 using Vc
-avg 10 x prefilter:........................ 15.900000 ms
-avg 10 x remap1 from pre-split coordinates: 38.799999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 44.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 71.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 72.900002 ms
-avg 10 x remap with functor & external bspl 43.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code MIRROR spline degree 6
-avg 10 x prefilter:........................ 20.100000 ms
-avg 10 x remap1 from pre-split coordinates: 115.199997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 124.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 157.300003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 160.300003 ms
-avg 10 x remap with functor & external bspl 125.699997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code MIRROR spline degree 6 using Vc
-avg 10 x prefilter:........................ 17.000000 ms
-avg 10 x remap1 from pre-split coordinates: 51.599998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 56.799999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 86.199997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 88.800003 ms
-avg 10 x remap with functor & external bspl 55.799999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code MIRROR spline degree 7
-avg 10 x prefilter:........................ 20.299999 ms
-avg 10 x remap1 from pre-split coordinates: 146.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 156.300003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 188.399994 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 189.100006 ms
-avg 10 x remap with functor & external bspl 154.100006 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code MIRROR spline degree 7 using Vc
-avg 10 x prefilter:........................ 17.299999 ms
-avg 10 x remap1 from pre-split coordinates: 65.599998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 70.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 100.900002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 101.400002 ms
-avg 10 x remap with functor & external bspl 68.800003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code REFLECT spline degree 2
-avg 10 x prefilter:........................ 14.600000 ms
-avg 10 x remap1 from pre-split coordinates: 28.200001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 38.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 65.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 69.000000 ms
-avg 10 x remap with functor & external bspl 40.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code REFLECT spline degree 2 using Vc
-avg 10 x prefilter:........................ 15.500000 ms
-avg 10 x remap1 from pre-split coordinates: 13.900000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 16.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 45.799999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 46.700001 ms
-avg 10 x remap with functor & external bspl 18.100000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code REFLECT spline degree 3
-avg 10 x prefilter:........................ 14.600000 ms
-avg 10 x remap1 from pre-split coordinates: 43.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 52.599998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 79.699997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 82.000000 ms
-avg 10 x remap with functor & external bspl 53.200001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code REFLECT spline degree 3 using Vc
-avg 10 x prefilter:........................ 15.200000 ms
-avg 10 x remap1 from pre-split coordinates: 19.900000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 24.799999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 52.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 53.400002 ms
-avg 10 x remap with functor & external bspl 25.299999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code REFLECT spline degree 4
-avg 10 x prefilter:........................ 17.000000 ms
-avg 10 x remap1 from pre-split coordinates: 63.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 72.699997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 103.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 107.300003 ms
-avg 10 x remap with functor & external bspl 75.400002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code REFLECT spline degree 4 using Vc
-avg 10 x prefilter:........................ 15.500000 ms
-avg 10 x remap1 from pre-split coordinates: 28.100000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 33.200001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 60.400002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 61.500000 ms
-avg 10 x remap with functor & external bspl 32.400002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code REFLECT spline degree 5
-avg 10 x prefilter:........................ 16.700001 ms
-avg 10 x remap1 from pre-split coordinates: 86.900002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 96.900002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 125.800003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 128.100006 ms
-avg 10 x remap with functor & external bspl 96.300003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code REFLECT spline degree 5 using Vc
-avg 10 x prefilter:........................ 16.400000 ms
-avg 10 x remap1 from pre-split coordinates: 38.299999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 43.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 72.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 73.300003 ms
-avg 10 x remap with functor & external bspl 42.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code REFLECT spline degree 6
-avg 10 x prefilter:........................ 20.200001 ms
-avg 10 x remap1 from pre-split coordinates: 114.699997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 125.300003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 156.699997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 161.000000 ms
-avg 10 x remap with functor & external bspl 126.599998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code REFLECT spline degree 6 using Vc
-avg 10 x prefilter:........................ 16.600000 ms
-avg 10 x remap1 from pre-split coordinates: 51.599998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 56.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 85.599998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 86.699997 ms
-avg 10 x remap with functor & external bspl 54.599998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code REFLECT spline degree 7
-avg 10 x prefilter:........................ 20.600000 ms
-avg 10 x remap1 from pre-split coordinates: 146.800003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 157.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 190.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 192.199997 ms
-avg 10 x remap with functor & external bspl 156.300003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code REFLECT spline degree 7 using Vc
-avg 10 x prefilter:........................ 17.900000 ms
-avg 10 x remap1 from pre-split coordinates: 66.400002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 70.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 100.699997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 100.300003 ms
-avg 10 x remap with functor & external bspl 69.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code NATURAL spline degree 2
-avg 10 x prefilter:........................ 14.900000 ms
-avg 10 x remap1 from pre-split coordinates: 28.100000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 36.799999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 64.199997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 67.800003 ms
-avg 10 x remap with functor & external bspl 39.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code NATURAL spline degree 2 using Vc
-avg 10 x prefilter:........................ 15.500000 ms
-avg 10 x remap1 from pre-split coordinates: 13.900000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 19.100000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 47.700001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 48.299999 ms
-avg 10 x remap with functor & external bspl 19.600000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code NATURAL spline degree 3
-avg 10 x prefilter:........................ 15.100000 ms
-avg 10 x remap1 from pre-split coordinates: 42.900002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 51.400002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 78.699997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 81.199997 ms
-avg 10 x remap with functor & external bspl 51.700001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code NATURAL spline degree 3 using Vc
-avg 10 x prefilter:........................ 15.800000 ms
-avg 10 x remap1 from pre-split coordinates: 19.900000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 23.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 52.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 53.799999 ms
-avg 10 x remap with functor & external bspl 24.799999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code NATURAL spline degree 4
-avg 10 x prefilter:........................ 17.200001 ms
-avg 10 x remap1 from pre-split coordinates: 63.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 71.800003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 101.300003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 105.000000 ms
-avg 10 x remap with functor & external bspl 73.300003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code NATURAL spline degree 4 using Vc
-avg 10 x prefilter:........................ 15.700000 ms
-avg 10 x remap1 from pre-split coordinates: 28.200001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 34.299999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 62.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 63.400002 ms
-avg 10 x remap with functor & external bspl 33.599998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code NATURAL spline degree 5
-avg 10 x prefilter:........................ 16.799999 ms
-avg 10 x remap1 from pre-split coordinates: 87.199997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 94.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 124.699997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 125.699997 ms
-avg 10 x remap with functor & external bspl 95.900002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code NATURAL spline degree 5 using Vc
-avg 10 x prefilter:........................ 16.400000 ms
-avg 10 x remap1 from pre-split coordinates: 38.799999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 43.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 71.900002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 73.199997 ms
-avg 10 x remap with functor & external bspl 42.700001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code NATURAL spline degree 6
-avg 10 x prefilter:........................ 20.400000 ms
-avg 10 x remap1 from pre-split coordinates: 114.599998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 124.599998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 156.199997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 159.100006 ms
-avg 10 x remap with functor & external bspl 125.199997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code NATURAL spline degree 6 using Vc
-avg 10 x prefilter:........................ 17.200001 ms
-avg 10 x remap1 from pre-split coordinates: 50.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 56.599998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 86.699997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 88.000000 ms
-avg 10 x remap with functor & external bspl 56.400002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code NATURAL spline degree 7
-avg 10 x prefilter:........................ 20.600000 ms
-avg 10 x remap1 from pre-split coordinates: 146.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 156.399994 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 187.699997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 189.399994 ms
-avg 10 x remap with functor & external bspl 155.199997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code NATURAL spline degree 7 using Vc
-avg 10 x prefilter:........................ 17.200001 ms
-avg 10 x remap1 from pre-split coordinates: 66.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 70.800003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 100.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 100.300003 ms
-avg 10 x remap with functor & external bspl 68.800003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code PERIODIC spline degree 2
-avg 10 x prefilter:........................ 15.300000 ms
-avg 10 x remap1 from pre-split coordinates: 28.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 38.200001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 65.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 69.500000 ms
-avg 10 x remap with functor & external bspl 40.200001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code PERIODIC spline degree 2 using Vc
-avg 10 x prefilter:........................ 15.500000 ms
-avg 10 x remap1 from pre-split coordinates: 13.400000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 19.100000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 47.799999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 48.599998 ms
-avg 10 x remap with functor & external bspl 18.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code PERIODIC spline degree 3
-avg 10 x prefilter:........................ 14.900000 ms
-avg 10 x remap1 from pre-split coordinates: 43.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 53.200001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 79.699997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 82.000000 ms
-avg 10 x remap with functor & external bspl 52.599998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code PERIODIC spline degree 3 using Vc
-avg 10 x prefilter:........................ 15.700000 ms
-avg 10 x remap1 from pre-split coordinates: 19.799999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 23.900000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 52.900002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 53.299999 ms
-avg 10 x remap with functor & external bspl 23.400000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code PERIODIC spline degree 4
-avg 10 x prefilter:........................ 16.600000 ms
-avg 10 x remap1 from pre-split coordinates: 63.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 70.800003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 102.300003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 105.400002 ms
-avg 10 x remap with functor & external bspl 74.800003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code PERIODIC spline degree 4 using Vc
-avg 10 x prefilter:........................ 15.900000 ms
-avg 10 x remap1 from pre-split coordinates: 28.600000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 34.700001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 63.200001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 64.199997 ms
-avg 10 x remap with functor & external bspl 34.400002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code PERIODIC spline degree 5
-avg 10 x prefilter:........................ 16.700001 ms
-avg 10 x remap1 from pre-split coordinates: 86.900002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 97.300003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 124.900002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 132.699997 ms
-avg 10 x remap with functor & external bspl 96.199997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code PERIODIC spline degree 5 using Vc
-avg 10 x prefilter:........................ 15.800000 ms
-avg 10 x remap1 from pre-split coordinates: 38.299999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 43.200001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 71.800003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 72.300003 ms
-avg 10 x remap with functor & external bspl 42.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code PERIODIC spline degree 6
-avg 10 x prefilter:........................ 20.400000 ms
-avg 10 x remap1 from pre-split coordinates: 114.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 124.900002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 158.600006 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 160.800003 ms
-avg 10 x remap with functor & external bspl 126.300003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code PERIODIC spline degree 6 using Vc
-avg 10 x prefilter:........................ 17.299999 ms
-avg 10 x remap1 from pre-split coordinates: 50.799999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 57.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 86.900002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 88.199997 ms
-avg 10 x remap with functor & external bspl 56.200001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code PERIODIC spline degree 7
-avg 10 x prefilter:........................ 20.400000 ms
-avg 10 x remap1 from pre-split coordinates: 147.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 157.100006 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 188.300003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 193.399994 ms
-avg 10 x remap with functor & external bspl 156.199997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code PERIODIC spline degree 7 using Vc
-avg 10 x prefilter:........................ 17.000000 ms
-avg 10 x remap1 from pre-split coordinates: 66.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 69.599998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 99.800003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 101.099998 ms
-avg 10 x remap with functor & external bspl 71.300003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing float data, double coordinates
-Image information:
-  file format: JPEG
-  width:       1920
-  height:      1079
-  pixel type:  UINT8
-  color image: yes (number of channels: 3)
-testing bc code MIRROR spline degree 2
-avg 10 x prefilter:........................ 10.400000 ms
-avg 10 x remap1 from pre-split coordinates: 40.799999 ms
-warped image diff Mean: 0.000019
-warped image diff Maximum: 0.000326
-avg 10 x remap1 from unsplit coordinates:.. 49.799999 ms
-warped image diff Mean: 0.000019
-warped image diff Maximum: 0.000326
-avg 10 x remap with internal spline:....... 64.900002 ms
-warped image diff Mean: 0.000019
-warped image diff Maximum: 0.000326
-avg 10 x remap with functor & internal bspl 68.800003 ms
-avg 10 x remap with functor & external bspl 51.900002 ms
-warped image diff Mean: 0.000019
-warped image diff Maximum: 0.000326
-difference original data/restored data:
-warped image diff Mean: 0.000018
-warped image diff Maximum: 0.000301
-
-testing bc code MIRROR spline degree 2 using Vc
-avg 10 x prefilter:........................ 8.500000 ms
-avg 10 x remap1 from pre-split coordinates: 10.800000 ms
-warped image diff Mean: 0.000018
-warped image diff Maximum: 0.000301
-avg 10 x remap1 from unsplit coordinates:.. 15.100000 ms
-warped image diff Mean: 0.000018
-warped image diff Maximum: 0.000301
-avg 10 x remap with internal spline:....... 30.900000 ms
-warped image diff Mean: 0.000018
-warped image diff Maximum: 0.000301
-avg 10 x remap with functor & internal bspl 31.600000 ms
-avg 10 x remap with functor & external bspl 15.900000 ms
-warped image diff Mean: 0.000018
-warped image diff Maximum: 0.000301
-difference original data/restored data:
-warped image diff Mean: 0.000018
-warped image diff Maximum: 0.000301
-
-testing bc code MIRROR spline degree 3
-avg 10 x prefilter:........................ 10.700000 ms
-avg 10 x remap1 from pre-split coordinates: 62.500000 ms
-warped image diff Mean: 0.000024
-warped image diff Maximum: 0.000268
-avg 10 x remap1 from unsplit coordinates:.. 69.699997 ms
-warped image diff Mean: 0.000024
-warped image diff Maximum: 0.000268
-avg 10 x remap with internal spline:....... 87.099998 ms
-warped image diff Mean: 0.000024
-warped image diff Maximum: 0.000268
-avg 10 x remap with functor & internal bspl 89.400002 ms
-avg 10 x remap with functor & external bspl 71.500000 ms
-warped image diff Mean: 0.000024
-warped image diff Maximum: 0.000268
-difference original data/restored data:
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000249
-
-testing bc code MIRROR spline degree 3 using Vc
-avg 10 x prefilter:........................ 8.900000 ms
-avg 10 x remap1 from pre-split coordinates: 16.400000 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000249
-avg 10 x remap1 from unsplit coordinates:.. 22.200001 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000249
-avg 10 x remap with internal spline:....... 36.000000 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000249
-avg 10 x remap with functor & internal bspl 36.900002 ms
-avg 10 x remap with functor & external bspl 21.299999 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000249
-difference original data/restored data:
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000249
-
-testing bc code MIRROR spline degree 4
-avg 10 x prefilter:........................ 14.000000 ms
-avg 10 x remap1 from pre-split coordinates: 90.800003 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000303
-avg 10 x remap1 from unsplit coordinates:.. 98.699997 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000303
-avg 10 x remap with internal spline:....... 119.599998 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000303
-avg 10 x remap with functor & internal bspl 122.400002 ms
-avg 10 x remap with functor & external bspl 101.699997 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000303
-difference original data/restored data:
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000292
-
-testing bc code MIRROR spline degree 4 using Vc
-avg 10 x prefilter:........................ 9.700000 ms
-avg 10 x remap1 from pre-split coordinates: 23.000000 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000292
-avg 10 x remap1 from unsplit coordinates:.. 30.799999 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000292
-avg 10 x remap with internal spline:....... 45.099998 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000292
-avg 10 x remap with functor & internal bspl 45.799999 ms
-avg 10 x remap with functor & external bspl 29.100000 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000292
-difference original data/restored data:
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000292
-
-testing bc code MIRROR spline degree 5
-avg 10 x prefilter:........................ 14.200000 ms
-avg 10 x remap1 from pre-split coordinates: 125.300003 ms
-warped image diff Mean: 0.000024
-warped image diff Maximum: 0.000293
-avg 10 x remap1 from unsplit coordinates:.. 133.100006 ms
-warped image diff Mean: 0.000024
-warped image diff Maximum: 0.000293
-avg 10 x remap with internal spline:....... 152.199997 ms
-warped image diff Mean: 0.000024
-warped image diff Maximum: 0.000293
-avg 10 x remap with functor & internal bspl 154.800003 ms
-avg 10 x remap with functor & external bspl 131.699997 ms
-warped image diff Mean: 0.000024
-warped image diff Maximum: 0.000293
-difference original data/restored data:
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000293
-
-testing bc code MIRROR spline degree 5 using Vc
-avg 10 x prefilter:........................ 9.000000 ms
-avg 10 x remap1 from pre-split coordinates: 31.400000 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000293
-avg 10 x remap1 from unsplit coordinates:.. 39.099998 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000293
-avg 10 x remap with internal spline:....... 53.299999 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000293
-avg 10 x remap with functor & internal bspl 53.500000 ms
-avg 10 x remap with functor & external bspl 38.200001 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000293
-difference original data/restored data:
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000293
-
-testing bc code MIRROR spline degree 6
-avg 10 x prefilter:........................ 18.100000 ms
-avg 10 x remap1 from pre-split coordinates: 162.699997 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000265
-avg 10 x remap1 from unsplit coordinates:.. 170.399994 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000265
-avg 10 x remap with internal spline:....... 196.100006 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000265
-avg 10 x remap with functor & internal bspl 197.000000 ms
-avg 10 x remap with functor & external bspl 173.600006 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000265
-difference original data/restored data:
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000274
-
-testing bc code MIRROR spline degree 6 using Vc
-avg 10 x prefilter:........................ 9.700000 ms
-avg 10 x remap1 from pre-split coordinates: 41.299999 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000274
-avg 10 x remap1 from unsplit coordinates:.. 48.799999 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000274
-avg 10 x remap with internal spline:....... 64.599998 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000274
-avg 10 x remap with functor & internal bspl 65.199997 ms
-avg 10 x remap with functor & external bspl 49.099998 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000274
-difference original data/restored data:
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000274
-
-testing bc code MIRROR spline degree 7
-avg 10 x prefilter:........................ 18.600000 ms
-avg 10 x remap1 from pre-split coordinates: 209.100006 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000467
-avg 10 x remap1 from unsplit coordinates:.. 215.699997 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000467
-avg 10 x remap with internal spline:....... 239.199997 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000467
-avg 10 x remap with functor & internal bspl 241.600006 ms
-avg 10 x remap with functor & external bspl 214.000000 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000467
-difference original data/restored data:
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000451
-
-testing bc code MIRROR spline degree 7 using Vc
-avg 10 x prefilter:........................ 10.000000 ms
-avg 10 x remap1 from pre-split coordinates: 51.700001 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000451
-avg 10 x remap1 from unsplit coordinates:.. 78.400002 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000451
-avg 10 x remap with internal spline:....... 93.699997 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000451
-avg 10 x remap with functor & internal bspl 77.500000 ms
-avg 10 x remap with functor & external bspl 62.900002 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000451
-difference original data/restored data:
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000451
-
-testing bc code REFLECT spline degree 2
-avg 10 x prefilter:........................ 10.200000 ms
-avg 10 x remap1 from pre-split coordinates: 40.700001 ms
-warped image diff Mean: 0.000018
-warped image diff Maximum: 0.000128
-avg 10 x remap1 from unsplit coordinates:.. 48.500000 ms
-warped image diff Mean: 0.000018
-warped image diff Maximum: 0.000128
-avg 10 x remap with internal spline:....... 64.199997 ms
-warped image diff Mean: 0.000018
-warped image diff Maximum: 0.000128
-avg 10 x remap with functor & internal bspl 68.900002 ms
-avg 10 x remap with functor & external bspl 51.099998 ms
-warped image diff Mean: 0.000018
-warped image diff Maximum: 0.000128
-difference original data/restored data:
-warped image diff Mean: 0.000017
-warped image diff Maximum: 0.000124
-
-testing bc code REFLECT spline degree 2 using Vc
-avg 10 x prefilter:........................ 9.100000 ms
-avg 10 x remap1 from pre-split coordinates: 11.200000 ms
-warped image diff Mean: 0.000017
-warped image diff Maximum: 0.000124
-avg 10 x remap1 from unsplit coordinates:.. 14.700000 ms
-warped image diff Mean: 0.000017
-warped image diff Maximum: 0.000124
-avg 10 x remap with internal spline:....... 29.900000 ms
-warped image diff Mean: 0.000017
-warped image diff Maximum: 0.000124
-avg 10 x remap with functor & internal bspl 30.799999 ms
-avg 10 x remap with functor & external bspl 15.400000 ms
-warped image diff Mean: 0.000017
-warped image diff Maximum: 0.000124
-difference original data/restored data:
-warped image diff Mean: 0.000017
-warped image diff Maximum: 0.000124
-
-testing bc code REFLECT spline degree 3
-avg 10 x prefilter:........................ 10.300000 ms
-avg 10 x remap1 from pre-split coordinates: 62.099998 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000111
-avg 10 x remap1 from unsplit coordinates:.. 78.900002 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000111
-avg 10 x remap with internal spline:....... 86.699997 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000111
-avg 10 x remap with functor & internal bspl 94.699997 ms
-avg 10 x remap with functor & external bspl 76.300003 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000111
-difference original data/restored data:
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000111
-
-testing bc code REFLECT spline degree 3 using Vc
-avg 10 x prefilter:........................ 9.300000 ms
-avg 10 x remap1 from pre-split coordinates: 16.200001 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000111
-avg 10 x remap1 from unsplit coordinates:.. 22.799999 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000111
-avg 10 x remap with internal spline:....... 36.299999 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000111
-avg 10 x remap with functor & internal bspl 37.200001 ms
-avg 10 x remap with functor & external bspl 21.700001 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000111
-difference original data/restored data:
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000111
-
-testing bc code REFLECT spline degree 4
-avg 10 x prefilter:........................ 14.300000 ms
-avg 10 x remap1 from pre-split coordinates: 89.599998 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000179
-avg 10 x remap1 from unsplit coordinates:.. 98.900002 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000179
-avg 10 x remap with internal spline:....... 117.599998 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000179
-avg 10 x remap with functor & internal bspl 129.300003 ms
-avg 10 x remap with functor & external bspl 101.800003 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000179
-difference original data/restored data:
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000173
-
-testing bc code REFLECT spline degree 4 using Vc
-avg 10 x prefilter:........................ 9.700000 ms
-avg 10 x remap1 from pre-split coordinates: 23.000000 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000173
-avg 10 x remap1 from unsplit coordinates:.. 29.900000 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000173
-avg 10 x remap with internal spline:....... 44.799999 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000173
-avg 10 x remap with functor & internal bspl 45.200001 ms
-avg 10 x remap with functor & external bspl 30.200001 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000173
-difference original data/restored data:
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000173
-
-testing bc code REFLECT spline degree 5
-avg 10 x prefilter:........................ 14.500000 ms
-avg 10 x remap1 from pre-split coordinates: 125.099998 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000198
-avg 10 x remap1 from unsplit coordinates:.. 130.300003 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000198
-avg 10 x remap with internal spline:....... 150.800003 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000198
-avg 10 x remap with functor & internal bspl 153.000000 ms
-avg 10 x remap with functor & external bspl 132.699997 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000198
-difference original data/restored data:
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000205
-
-testing bc code REFLECT spline degree 5 using Vc
-avg 10 x prefilter:........................ 9.200000 ms
-avg 10 x remap1 from pre-split coordinates: 31.100000 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000205
-avg 10 x remap1 from unsplit coordinates:.. 39.400002 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000205
-avg 10 x remap with internal spline:....... 53.099998 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000205
-avg 10 x remap with functor & internal bspl 54.000000 ms
-avg 10 x remap with functor & external bspl 37.799999 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000205
-difference original data/restored data:
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000205
-
-testing bc code REFLECT spline degree 6
-avg 10 x prefilter:........................ 18.400000 ms
-avg 10 x remap1 from pre-split coordinates: 162.100006 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000283
-avg 10 x remap1 from unsplit coordinates:.. 171.300003 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000283
-avg 10 x remap with internal spline:....... 195.100006 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000283
-avg 10 x remap with functor & internal bspl 197.300003 ms
-avg 10 x remap with functor & external bspl 173.100006 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000283
-difference original data/restored data:
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000285
-
-testing bc code REFLECT spline degree 6 using Vc
-avg 10 x prefilter:........................ 9.400000 ms
-avg 10 x remap1 from pre-split coordinates: 41.599998 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000285
-avg 10 x remap1 from unsplit coordinates:.. 49.299999 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000285
-avg 10 x remap with internal spline:....... 64.300003 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000285
-avg 10 x remap with functor & internal bspl 65.300003 ms
-avg 10 x remap with functor & external bspl 49.099998 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000285
-difference original data/restored data:
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000285
-
-testing bc code REFLECT spline degree 7
-avg 10 x prefilter:........................ 18.600000 ms
-avg 10 x remap1 from pre-split coordinates: 207.500000 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000324
-avg 10 x remap1 from unsplit coordinates:.. 214.699997 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000324
-avg 10 x remap with internal spline:....... 238.699997 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000324
-avg 10 x remap with functor & internal bspl 242.100006 ms
-avg 10 x remap with functor & external bspl 215.800003 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000324
-difference original data/restored data:
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000318
-
-testing bc code REFLECT spline degree 7 using Vc
-avg 10 x prefilter:........................ 10.300000 ms
-avg 10 x remap1 from pre-split coordinates: 52.099998 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000318
-avg 10 x remap1 from unsplit coordinates:.. 61.299999 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000318
-avg 10 x remap with internal spline:....... 77.000000 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000318
-avg 10 x remap with functor & internal bspl 78.699997 ms
-avg 10 x remap with functor & external bspl 61.500000 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000318
-difference original data/restored data:
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000318
-
-testing bc code NATURAL spline degree 2
-avg 10 x prefilter:........................ 10.100000 ms
-avg 10 x remap1 from pre-split coordinates: 40.400002 ms
-warped image diff Mean: 0.000021
-warped image diff Maximum: 0.000568
-avg 10 x remap1 from unsplit coordinates:.. 48.200001 ms
-warped image diff Mean: 0.000021
-warped image diff Maximum: 0.000568
-avg 10 x remap with internal spline:....... 64.800003 ms
-warped image diff Mean: 0.000021
-warped image diff Maximum: 0.000568
-avg 10 x remap with functor & internal bspl 69.599998 ms
-avg 10 x remap with functor & external bspl 50.599998 ms
-warped image diff Mean: 0.000021
-warped image diff Maximum: 0.000568
-difference original data/restored data:
-warped image diff Mean: 0.000019
-warped image diff Maximum: 0.000583
-
-testing bc code NATURAL spline degree 2 using Vc
-avg 10 x prefilter:........................ 9.700000 ms
-avg 10 x remap1 from pre-split coordinates: 13.200000 ms
-warped image diff Mean: 0.000019
-warped image diff Maximum: 0.000583
-avg 10 x remap1 from unsplit coordinates:.. 20.100000 ms
-warped image diff Mean: 0.000019
-warped image diff Maximum: 0.000583
-avg 10 x remap with internal spline:....... 32.400002 ms
-warped image diff Mean: 0.000019
-warped image diff Maximum: 0.000583
-avg 10 x remap with functor & internal bspl 31.100000 ms
-avg 10 x remap with functor & external bspl 16.500000 ms
-warped image diff Mean: 0.000019
-warped image diff Maximum: 0.000583
-difference original data/restored data:
-warped image diff Mean: 0.000019
-warped image diff Maximum: 0.000583
-
-testing bc code NATURAL spline degree 3
-avg 10 x prefilter:........................ 11.600000 ms
-avg 10 x remap1 from pre-split coordinates: 62.000000 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000521
-avg 10 x remap1 from unsplit coordinates:.. 67.500000 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000521
-avg 10 x remap with internal spline:....... 84.300003 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000521
-avg 10 x remap with functor & internal bspl 87.699997 ms
-avg 10 x remap with functor & external bspl 70.900002 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000521
-difference original data/restored data:
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000530
-
-testing bc code NATURAL spline degree 3 using Vc
-avg 10 x prefilter:........................ 8.800000 ms
-avg 10 x remap1 from pre-split coordinates: 16.299999 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000530
-avg 10 x remap1 from unsplit coordinates:.. 21.299999 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000530
-avg 10 x remap with internal spline:....... 36.400002 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000530
-avg 10 x remap with functor & internal bspl 37.099998 ms
-avg 10 x remap with functor & external bspl 21.400000 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000530
-difference original data/restored data:
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000530
-
-testing bc code NATURAL spline degree 4
-avg 10 x prefilter:........................ 14.700000 ms
-avg 10 x remap1 from pre-split coordinates: 90.300003 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000689
-avg 10 x remap1 from unsplit coordinates:.. 97.800003 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000689
-avg 10 x remap with internal spline:....... 117.300003 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000689
-avg 10 x remap with functor & internal bspl 120.300003 ms
-avg 10 x remap with functor & external bspl 99.800003 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000689
-difference original data/restored data:
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000677
-
-testing bc code NATURAL spline degree 4 using Vc
-avg 10 x prefilter:........................ 9.700000 ms
-avg 10 x remap1 from pre-split coordinates: 22.600000 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000677
-avg 10 x remap1 from unsplit coordinates:.. 28.900000 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000677
-avg 10 x remap with internal spline:....... 45.599998 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000677
-avg 10 x remap with functor & internal bspl 45.000000 ms
-avg 10 x remap with functor & external bspl 28.700001 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000677
-difference original data/restored data:
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000677
-
-testing bc code NATURAL spline degree 5
-avg 10 x prefilter:........................ 14.100000 ms
-avg 10 x remap1 from pre-split coordinates: 124.500000 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000805
-avg 10 x remap1 from unsplit coordinates:.. 130.100006 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000805
-avg 10 x remap with internal spline:....... 150.399994 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000805
-avg 10 x remap with functor & internal bspl 152.199997 ms
-avg 10 x remap with functor & external bspl 131.500000 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000805
-difference original data/restored data:
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000813
-
-testing bc code NATURAL spline degree 5 using Vc
-avg 10 x prefilter:........................ 9.100000 ms
-avg 10 x remap1 from pre-split coordinates: 31.500000 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000813
-avg 10 x remap1 from unsplit coordinates:.. 38.000000 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000813
-avg 10 x remap with internal spline:....... 53.700001 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000813
-avg 10 x remap with functor & internal bspl 53.599998 ms
-avg 10 x remap with functor & external bspl 37.400002 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000813
-difference original data/restored data:
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000813
-
-testing bc code NATURAL spline degree 6
-avg 10 x prefilter:........................ 18.600000 ms
-avg 10 x remap1 from pre-split coordinates: 162.600006 ms
-warped image diff Mean: 0.000032
-warped image diff Maximum: 0.000949
-avg 10 x remap1 from unsplit coordinates:.. 171.399994 ms
-warped image diff Mean: 0.000032
-warped image diff Maximum: 0.000949
-avg 10 x remap with internal spline:....... 194.500000 ms
-warped image diff Mean: 0.000032
-warped image diff Maximum: 0.000949
-avg 10 x remap with functor & internal bspl 199.000000 ms
-avg 10 x remap with functor & external bspl 216.399994 ms
-warped image diff Mean: 0.000032
-warped image diff Maximum: 0.000949
-difference original data/restored data:
-warped image diff Mean: 0.000031
-warped image diff Maximum: 0.000948
-
-testing bc code NATURAL spline degree 6 using Vc
-avg 10 x prefilter:........................ 9.800000 ms
-avg 10 x remap1 from pre-split coordinates: 41.099998 ms
-warped image diff Mean: 0.000031
-warped image diff Maximum: 0.000948
-avg 10 x remap1 from unsplit coordinates:.. 50.000000 ms
-warped image diff Mean: 0.000031
-warped image diff Maximum: 0.000948
-avg 10 x remap with internal spline:....... 65.900002 ms
-warped image diff Mean: 0.000031
-warped image diff Maximum: 0.000948
-avg 10 x remap with functor & internal bspl 66.800003 ms
-avg 10 x remap with functor & external bspl 48.700001 ms
-warped image diff Mean: 0.000031
-warped image diff Maximum: 0.000948
-difference original data/restored data:
-warped image diff Mean: 0.000031
-warped image diff Maximum: 0.000948
-
-testing bc code NATURAL spline degree 7
-avg 10 x prefilter:........................ 18.700001 ms
-avg 10 x remap1 from pre-split coordinates: 208.199997 ms
-warped image diff Mean: 0.000038
-warped image diff Maximum: 0.001432
-avg 10 x remap1 from unsplit coordinates:.. 213.500000 ms
-warped image diff Mean: 0.000038
-warped image diff Maximum: 0.001432
-avg 10 x remap with internal spline:....... 235.600006 ms
-warped image diff Mean: 0.000038
-warped image diff Maximum: 0.001432
-avg 10 x remap with functor & internal bspl 239.600006 ms
-avg 10 x remap with functor & external bspl 214.899994 ms
-warped image diff Mean: 0.000038
-warped image diff Maximum: 0.001432
-difference original data/restored data:
-warped image diff Mean: 0.000038
-warped image diff Maximum: 0.001432
-
-testing bc code NATURAL spline degree 7 using Vc
-avg 10 x prefilter:........................ 10.000000 ms
-avg 10 x remap1 from pre-split coordinates: 51.700001 ms
-warped image diff Mean: 0.000037
-warped image diff Maximum: 0.001432
-avg 10 x remap1 from unsplit coordinates:.. 62.200001 ms
-warped image diff Mean: 0.000037
-warped image diff Maximum: 0.001432
-avg 10 x remap with internal spline:....... 78.099998 ms
-warped image diff Mean: 0.000037
-warped image diff Maximum: 0.001432
-avg 10 x remap with functor & internal bspl 78.400002 ms
-avg 10 x remap with functor & external bspl 60.900002 ms
-warped image diff Mean: 0.000037
-warped image diff Maximum: 0.001432
-difference original data/restored data:
-warped image diff Mean: 0.000037
-warped image diff Maximum: 0.001432
-
-testing bc code PERIODIC spline degree 2
-avg 10 x prefilter:........................ 10.800000 ms
-avg 10 x remap1 from pre-split coordinates: 40.599998 ms
-warped image diff Mean: 0.000018
-warped image diff Maximum: 0.000220
-avg 10 x remap1 from unsplit coordinates:.. 49.299999 ms
-warped image diff Mean: 0.000018
-warped image diff Maximum: 0.000220
-avg 10 x remap with internal spline:....... 65.000000 ms
-warped image diff Mean: 0.000018
-warped image diff Maximum: 0.000220
-avg 10 x remap with functor & internal bspl 68.400002 ms
-avg 10 x remap with functor & external bspl 50.700001 ms
-warped image diff Mean: 0.000018
-warped image diff Maximum: 0.000220
-difference original data/restored data:
-warped image diff Mean: 0.000017
-warped image diff Maximum: 0.000220
-
-testing bc code PERIODIC spline degree 2 using Vc
-avg 10 x prefilter:........................ 8.900000 ms
-avg 10 x remap1 from pre-split coordinates: 10.700000 ms
-warped image diff Mean: 0.000017
-warped image diff Maximum: 0.000220
-avg 10 x remap1 from unsplit coordinates:.. 16.299999 ms
-warped image diff Mean: 0.000017
-warped image diff Maximum: 0.000220
-avg 10 x remap with internal spline:....... 31.000000 ms
-warped image diff Mean: 0.000017
-warped image diff Maximum: 0.000220
-avg 10 x remap with functor & internal bspl 31.400000 ms
-avg 10 x remap with functor & external bspl 16.600000 ms
-warped image diff Mean: 0.000017
-warped image diff Maximum: 0.000220
-difference original data/restored data:
-warped image diff Mean: 0.000017
-warped image diff Maximum: 0.000220
-
-testing bc code PERIODIC spline degree 3
-avg 10 x prefilter:........................ 10.600000 ms
-avg 10 x remap1 from pre-split coordinates: 61.799999 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000163
-avg 10 x remap1 from unsplit coordinates:.. 68.900002 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000163
-avg 10 x remap with internal spline:....... 86.000000 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000163
-avg 10 x remap with functor & internal bspl 88.800003 ms
-avg 10 x remap with functor & external bspl 70.900002 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000163
-difference original data/restored data:
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000164
-
-testing bc code PERIODIC spline degree 3 using Vc
-avg 10 x prefilter:........................ 8.900000 ms
-avg 10 x remap1 from pre-split coordinates: 16.799999 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000164
-avg 10 x remap1 from unsplit coordinates:.. 22.299999 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000164
-avg 10 x remap with internal spline:....... 36.099998 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000164
-avg 10 x remap with functor & internal bspl 37.000000 ms
-avg 10 x remap with functor & external bspl 22.400000 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000164
-difference original data/restored data:
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000164
-
-testing bc code PERIODIC spline degree 4
-avg 10 x prefilter:........................ 14.000000 ms
-avg 10 x remap1 from pre-split coordinates: 91.199997 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000194
-avg 10 x remap1 from unsplit coordinates:.. 99.900002 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000194
-avg 10 x remap with internal spline:....... 121.300003 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000194
-avg 10 x remap with functor & internal bspl 123.199997 ms
-avg 10 x remap with functor & external bspl 100.699997 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000194
-difference original data/restored data:
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000194
-
-testing bc code PERIODIC spline degree 4 using Vc
-avg 10 x prefilter:........................ 10.000000 ms
-avg 10 x remap1 from pre-split coordinates: 23.100000 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000194
-avg 10 x remap1 from unsplit coordinates:.. 29.200001 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000194
-avg 10 x remap with internal spline:....... 46.500000 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000194
-avg 10 x remap with functor & internal bspl 46.799999 ms
-avg 10 x remap with functor & external bspl 29.299999 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000194
-difference original data/restored data:
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000194
-
-testing bc code PERIODIC spline degree 5
-avg 10 x prefilter:........................ 14.300000 ms
-avg 10 x remap1 from pre-split coordinates: 125.699997 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000197
-avg 10 x remap1 from unsplit coordinates:.. 131.300003 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000197
-avg 10 x remap with internal spline:....... 150.899994 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000197
-avg 10 x remap with functor & internal bspl 153.500000 ms
-avg 10 x remap with functor & external bspl 132.699997 ms
-warped image diff Mean: 0.000023
-warped image diff Maximum: 0.000197
-difference original data/restored data:
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000197
-
-testing bc code PERIODIC spline degree 5 using Vc
-avg 10 x prefilter:........................ 9.100000 ms
-avg 10 x remap1 from pre-split coordinates: 31.100000 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000197
-avg 10 x remap1 from unsplit coordinates:.. 37.200001 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000197
-avg 10 x remap with internal spline:....... 53.900002 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000197
-avg 10 x remap with functor & internal bspl 54.200001 ms
-avg 10 x remap with functor & external bspl 37.500000 ms
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000197
-difference original data/restored data:
-warped image diff Mean: 0.000022
-warped image diff Maximum: 0.000197
-
-testing bc code PERIODIC spline degree 6
-avg 10 x prefilter:........................ 18.200001 ms
-avg 10 x remap1 from pre-split coordinates: 161.500000 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000176
-avg 10 x remap1 from unsplit coordinates:.. 169.699997 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000176
-avg 10 x remap with internal spline:....... 194.600006 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000176
-avg 10 x remap with functor & internal bspl 197.399994 ms
-avg 10 x remap with functor & external bspl 171.800003 ms
-warped image diff Mean: 0.000027
-warped image diff Maximum: 0.000176
-difference original data/restored data:
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000179
-
-testing bc code PERIODIC spline degree 6 using Vc
-avg 10 x prefilter:........................ 10.000000 ms
-avg 10 x remap1 from pre-split coordinates: 41.299999 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000179
-avg 10 x remap1 from unsplit coordinates:.. 50.700001 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000179
-avg 10 x remap with internal spline:....... 64.300003 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000179
-avg 10 x remap with functor & internal bspl 64.699997 ms
-avg 10 x remap with functor & external bspl 49.000000 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000179
-difference original data/restored data:
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000179
-
-testing bc code PERIODIC spline degree 7
-avg 10 x prefilter:........................ 18.299999 ms
-avg 10 x remap1 from pre-split coordinates: 208.600006 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000374
-avg 10 x remap1 from unsplit coordinates:.. 213.800003 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000374
-avg 10 x remap with internal spline:....... 237.699997 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000374
-avg 10 x remap with functor & internal bspl 240.399994 ms
-avg 10 x remap with functor & external bspl 216.000000 ms
-warped image diff Mean: 0.000026
-warped image diff Maximum: 0.000374
-difference original data/restored data:
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000380
-
-testing bc code PERIODIC spline degree 7 using Vc
-avg 10 x prefilter:........................ 9.600000 ms
-avg 10 x remap1 from pre-split coordinates: 52.400002 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000380
-avg 10 x remap1 from unsplit coordinates:.. 59.900002 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000380
-avg 10 x remap with internal spline:....... 76.800003 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000380
-avg 10 x remap with functor & internal bspl 78.300003 ms
-avg 10 x remap with functor & external bspl 61.000000 ms
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000380
-difference original data/restored data:
-warped image diff Mean: 0.000025
-warped image diff Maximum: 0.000380
-
-
-testing double data, float coordinates
-Image information:
-  file format: JPEG
-  width:       1920
-  height:      1079
-  pixel type:  UINT8
-  color image: yes (number of channels: 3)
-testing bc code MIRROR spline degree 2
-avg 10 x prefilter:........................ 14.500000 ms
-avg 10 x remap1 from pre-split coordinates: 28.900000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 38.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 64.400002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 65.500000 ms
-avg 10 x remap with functor & external bspl 37.299999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code MIRROR spline degree 2 using Vc
-avg 10 x prefilter:........................ 15.200000 ms
-avg 10 x remap1 from pre-split coordinates: 13.200000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 14.700000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 43.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 43.799999 ms
-avg 10 x remap with functor & external bspl 14.900000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code MIRROR spline degree 3
-avg 10 x prefilter:........................ 14.600000 ms
-avg 10 x remap1 from pre-split coordinates: 43.700001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 53.200001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 79.699997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 80.099998 ms
-avg 10 x remap with functor & external bspl 52.200001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code MIRROR spline degree 3 using Vc
-avg 10 x prefilter:........................ 15.000000 ms
-avg 10 x remap1 from pre-split coordinates: 19.799999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 20.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 49.799999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 50.400002 ms
-avg 10 x remap with functor & external bspl 22.100000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code MIRROR spline degree 4
-avg 10 x prefilter:........................ 16.900000 ms
-avg 10 x remap1 from pre-split coordinates: 63.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 72.400002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 100.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 103.699997 ms
-avg 10 x remap with functor & external bspl 71.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code MIRROR spline degree 4 using Vc
-avg 10 x prefilter:........................ 15.800000 ms
-avg 10 x remap1 from pre-split coordinates: 28.200001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 28.799999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 57.799999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 59.200001 ms
-avg 10 x remap with functor & external bspl 30.900000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code MIRROR spline degree 5
-avg 10 x prefilter:........................ 16.299999 ms
-avg 10 x remap1 from pre-split coordinates: 87.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 97.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 125.800003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 126.500000 ms
-avg 10 x remap with functor & external bspl 95.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code MIRROR spline degree 5 using Vc
-avg 10 x prefilter:........................ 15.800000 ms
-avg 10 x remap1 from pre-split coordinates: 38.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 40.700001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 69.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 69.300003 ms
-avg 10 x remap with functor & external bspl 39.400002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code MIRROR spline degree 6
-avg 10 x prefilter:........................ 20.400000 ms
-avg 10 x remap1 from pre-split coordinates: 114.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 124.400002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 156.699997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 162.300003 ms
-avg 10 x remap with functor & external bspl 123.400002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code MIRROR spline degree 6 using Vc
-avg 10 x prefilter:........................ 16.700001 ms
-avg 10 x remap1 from pre-split coordinates: 51.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 53.400002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 81.800003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 83.599998 ms
-avg 10 x remap with functor & external bspl 52.799999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code MIRROR spline degree 7
-avg 10 x prefilter:........................ 20.100000 ms
-avg 10 x remap1 from pre-split coordinates: 146.600006 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 156.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 189.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 190.100006 ms
-avg 10 x remap with functor & external bspl 157.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code MIRROR spline degree 7 using Vc
-avg 10 x prefilter:........................ 17.000000 ms
-avg 10 x remap1 from pre-split coordinates: 65.400002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 66.699997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 96.900002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 98.000000 ms
-avg 10 x remap with functor & external bspl 66.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code REFLECT spline degree 2
-avg 10 x prefilter:........................ 14.800000 ms
-avg 10 x remap1 from pre-split coordinates: 29.400000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 37.900002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 64.699997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 66.300003 ms
-avg 10 x remap with functor & external bspl 38.200001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code REFLECT spline degree 2 using Vc
-avg 10 x prefilter:........................ 15.300000 ms
-avg 10 x remap1 from pre-split coordinates: 13.400000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 14.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 43.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 43.900002 ms
-avg 10 x remap with functor & external bspl 15.700000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code REFLECT spline degree 3
-avg 10 x prefilter:........................ 14.400000 ms
-avg 10 x remap1 from pre-split coordinates: 43.799999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 52.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 79.599998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 81.599998 ms
-avg 10 x remap with functor & external bspl 52.900002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code REFLECT spline degree 3 using Vc
-avg 10 x prefilter:........................ 14.800000 ms
-avg 10 x remap1 from pre-split coordinates: 19.700001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 22.100000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 48.700001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 49.700001 ms
-avg 10 x remap with functor & external bspl 21.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code REFLECT spline degree 4
-avg 10 x prefilter:........................ 16.600000 ms
-avg 10 x remap1 from pre-split coordinates: 63.400002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 73.199997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 102.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 102.900002 ms
-avg 10 x remap with functor & external bspl 72.199997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code REFLECT spline degree 4 using Vc
-avg 10 x prefilter:........................ 15.900000 ms
-avg 10 x remap1 from pre-split coordinates: 28.100000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 31.100000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 57.799999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 58.799999 ms
-avg 10 x remap with functor & external bspl 29.799999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code REFLECT spline degree 5
-avg 10 x prefilter:........................ 16.700001 ms
-avg 10 x remap1 from pre-split coordinates: 87.300003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 97.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 126.199997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 126.800003 ms
-avg 10 x remap with functor & external bspl 96.699997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code REFLECT spline degree 5 using Vc
-avg 10 x prefilter:........................ 15.600000 ms
-avg 10 x remap1 from pre-split coordinates: 38.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 41.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 69.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 69.699997 ms
-avg 10 x remap with functor & external bspl 40.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code REFLECT spline degree 6
-avg 10 x prefilter:........................ 20.400000 ms
-avg 10 x remap1 from pre-split coordinates: 115.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 125.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 157.399994 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 157.300003 ms
-avg 10 x remap with functor & external bspl 124.300003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code REFLECT spline degree 6 using Vc
-avg 10 x prefilter:........................ 16.500000 ms
-avg 10 x remap1 from pre-split coordinates: 50.400002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 51.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 82.199997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 82.900002 ms
-avg 10 x remap with functor & external bspl 52.599998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code REFLECT spline degree 7
-avg 10 x prefilter:........................ 20.200001 ms
-avg 10 x remap1 from pre-split coordinates: 148.300003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 157.899994 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 189.399994 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 190.899994 ms
-avg 10 x remap with functor & external bspl 156.199997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code REFLECT spline degree 7 using Vc
-avg 10 x prefilter:........................ 17.700001 ms
-avg 10 x remap1 from pre-split coordinates: 66.199997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 67.800003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 97.400002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 98.000000 ms
-avg 10 x remap with functor & external bspl 66.800003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code NATURAL spline degree 2
-avg 10 x prefilter:........................ 14.800000 ms
-avg 10 x remap1 from pre-split coordinates: 28.700001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 36.700001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 63.400002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 65.000000 ms
-avg 10 x remap with functor & external bspl 37.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code NATURAL spline degree 2 using Vc
-avg 10 x prefilter:........................ 15.100000 ms
-avg 10 x remap1 from pre-split coordinates: 13.200000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 14.700000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 43.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 44.200001 ms
-avg 10 x remap with functor & external bspl 14.800000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code NATURAL spline degree 3
-avg 10 x prefilter:........................ 15.000000 ms
-avg 10 x remap1 from pre-split coordinates: 44.299999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 50.299999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 78.300003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 79.599998 ms
-avg 10 x remap with functor & external bspl 51.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code NATURAL spline degree 3 using Vc
-avg 10 x prefilter:........................ 15.100000 ms
-avg 10 x remap1 from pre-split coordinates: 19.600000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 21.200001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 50.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 51.200001 ms
-avg 10 x remap with functor & external bspl 22.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code NATURAL spline degree 4
-avg 10 x prefilter:........................ 16.799999 ms
-avg 10 x remap1 from pre-split coordinates: 63.200001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 72.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 100.800003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 101.400002 ms
-avg 10 x remap with functor & external bspl 71.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code NATURAL spline degree 4 using Vc
-avg 10 x prefilter:........................ 15.700000 ms
-avg 10 x remap1 from pre-split coordinates: 28.299999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 28.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 58.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 59.200001 ms
-avg 10 x remap with functor & external bspl 30.700001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code NATURAL spline degree 5
-avg 10 x prefilter:........................ 16.400000 ms
-avg 10 x remap1 from pre-split coordinates: 87.900002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 95.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 124.400002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 125.000000 ms
-avg 10 x remap with functor & external bspl 94.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code NATURAL spline degree 5 using Vc
-avg 10 x prefilter:........................ 15.500000 ms
-avg 10 x remap1 from pre-split coordinates: 38.700001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 41.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 70.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 70.300003 ms
-avg 10 x remap with functor & external bspl 39.900002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code NATURAL spline degree 6
-avg 10 x prefilter:........................ 20.299999 ms
-avg 10 x remap1 from pre-split coordinates: 115.800003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 124.900002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 156.800003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 155.899994 ms
-avg 10 x remap with functor & external bspl 122.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code NATURAL spline degree 6 using Vc
-avg 10 x prefilter:........................ 17.100000 ms
-avg 10 x remap1 from pre-split coordinates: 50.900002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 53.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 82.199997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 83.300003 ms
-avg 10 x remap with functor & external bspl 51.700001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code NATURAL spline degree 7
-avg 10 x prefilter:........................ 20.299999 ms
-avg 10 x remap1 from pre-split coordinates: 147.199997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 155.300003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 188.100006 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 188.699997 ms
-avg 10 x remap with functor & external bspl 155.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code NATURAL spline degree 7 using Vc
-avg 10 x prefilter:........................ 17.400000 ms
-avg 10 x remap1 from pre-split coordinates: 65.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 64.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 95.400002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 97.000000 ms
-avg 10 x remap with functor & external bspl 64.800003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code PERIODIC spline degree 2
-avg 10 x prefilter:........................ 14.900000 ms
-avg 10 x remap1 from pre-split coordinates: 28.299999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 37.599998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 64.300003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 66.500000 ms
-avg 10 x remap with functor & external bspl 38.700001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code PERIODIC spline degree 2 using Vc
-avg 10 x prefilter:........................ 15.300000 ms
-avg 10 x remap1 from pre-split coordinates: 13.400000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 14.800000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 43.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 43.900002 ms
-avg 10 x remap with functor & external bspl 14.900000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code PERIODIC spline degree 3
-avg 10 x prefilter:........................ 14.700000 ms
-avg 10 x remap1 from pre-split coordinates: 43.799999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 52.599998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 78.800003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 80.699997 ms
-avg 10 x remap with functor & external bspl 52.400002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code PERIODIC spline degree 3 using Vc
-avg 10 x prefilter:........................ 15.800000 ms
-avg 10 x remap1 from pre-split coordinates: 19.900000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 22.100000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 49.299999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 50.900002 ms
-avg 10 x remap with functor & external bspl 22.600000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code PERIODIC spline degree 4
-avg 10 x prefilter:........................ 16.299999 ms
-avg 10 x remap1 from pre-split coordinates: 63.299999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 71.800003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 101.800003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 103.099998 ms
-avg 10 x remap with functor & external bspl 72.300003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code PERIODIC spline degree 4 using Vc
-avg 10 x prefilter:........................ 15.900000 ms
-avg 10 x remap1 from pre-split coordinates: 28.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 30.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 58.900002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 59.099998 ms
-avg 10 x remap with functor & external bspl 30.400000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code PERIODIC spline degree 5
-avg 10 x prefilter:........................ 17.700001 ms
-avg 10 x remap1 from pre-split coordinates: 87.800003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 96.400002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 125.300003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 126.900002 ms
-avg 10 x remap with functor & external bspl 95.900002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code PERIODIC spline degree 5 using Vc
-avg 10 x prefilter:........................ 15.800000 ms
-avg 10 x remap1 from pre-split coordinates: 38.799999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 40.799999 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 69.800003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 70.099998 ms
-avg 10 x remap with functor & external bspl 40.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code PERIODIC spline degree 6
-avg 10 x prefilter:........................ 20.400000 ms
-avg 10 x remap1 from pre-split coordinates: 114.800003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 124.900002 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 157.399994 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 159.000000 ms
-avg 10 x remap with functor & external bspl 124.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code PERIODIC spline degree 6 using Vc
-avg 10 x prefilter:........................ 17.000000 ms
-avg 10 x remap1 from pre-split coordinates: 51.000000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 53.200001 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 82.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 84.300003 ms
-avg 10 x remap with functor & external bspl 52.099998 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code PERIODIC spline degree 7
-avg 10 x prefilter:........................ 20.200001 ms
-avg 10 x remap1 from pre-split coordinates: 147.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 154.199997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 189.399994 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 190.600006 ms
-avg 10 x remap with functor & external bspl 155.800003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
-testing bc code PERIODIC spline degree 7 using Vc
-avg 10 x prefilter:........................ 17.200001 ms
-avg 10 x remap1 from pre-split coordinates: 65.800003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap1 from unsplit coordinates:.. 65.199997 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with internal spline:....... 95.800003 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-avg 10 x remap with functor & internal bspl 97.400002 ms
-avg 10 x remap with functor & external bspl 65.500000 ms
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-difference original data/restored data:
-warped image diff Mean: 0.000000
-warped image diff Maximum: 0.000000
-
diff --git a/filter.h b/filter.h
index e4642b0..e80ce21 100644
--- a/filter.h
+++ b/filter.h
@@ -361,10 +361,11 @@ value_type icc_reflect ( IT c , int k )
     }
     return(Sum);
   }
-  else {
+  else
+  {
     zn = z;
     iz = value_type(1.0) / z;
-    z2n = value_type ( pow(double(pole[k]), double(M - 1)) );
+    z2n = value_type ( pow(double(pole[k]), double(2 * M)) );
     Sum = 0 ;
     for (n = 0; n < M - 1 ; n++)
     {
diff --git a/remap.h b/remap.h
index bb7d0da..ce40338 100644
--- a/remap.h
+++ b/remap.h
@@ -190,7 +190,7 @@ struct _fill
         auto sub_output = output.bindOuter ( c ) ;
         auto sub_gen = gen.bindOuter ( c ) ;
         _fill < decltype ( sub_gen ) , dim_out - 1 >()
-          ( sub_gen , sub_output ) ;
+          ( sub_gen , sub_output , use_vc ) ;
       }
   }
 } ;

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/vspline.git



More information about the debian-science-commits mailing list