Research Article

Parameterization Method on B-Spline Curve

Algorithm 1

INPUT:
: -3D data points
: Number of data points
: Degree of the curve
OUTPUT:
: Parameter value
: Knot vector
THE ALGORITHM:
 //Calculate initial parameter value
Exponential Parameterization ( , 0.8);
Averaging Knot Vector ( );
 For
   Bspline Basis Function ( );
   ;
   ;
 end
 if ( )
  for
    ;
    ;
    ;
    ;
    ;
  end
 else
  for
    ;
    ;
    ;
    ;
    ;
  end
 end
;
;
END