Skip to content

Commit

Permalink
update more overwrites
Browse files Browse the repository at this point in the history
  • Loading branch information
ncullen93 committed May 19, 2024
1 parent 76797c4 commit 73f9361
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/FitBSplineDisplacementField.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ SEXP fitBSplineVectorImageHelper(
}

// [[Rcpp::export]]
SEXP fitBsplineDisplacementField(
SEXP fitBsplineDisplacementFieldR(
SEXP r_dimensionality,
SEXP r_displacementField,
SEXP r_displacementFieldWeightImage,
Expand Down
2 changes: 1 addition & 1 deletion src/FitBSplineObjectToScatteredData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ SEXP fitBSplineVectorImageHelper(
}

// [[Rcpp::export]]
SEXP fitBsplineObjectToScatteredData(
SEXP fitBsplineObjectToScatteredDataR(
SEXP r_scatteredData,
SEXP r_parametricData,
SEXP r_dataWeights,
Expand Down
2 changes: 1 addition & 1 deletion src/FitThinPlateSplineDisplacementField.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ SEXP fitThinPlateSplineVectorImageHelper(
}

// [[Rcpp::export]]
SEXP fitThinPlateSplineDisplacementField(
SEXP fitThinPlateSplineDisplacementFieldR(
SEXP r_dimensionality,
SEXP r_displacementOrigins,
SEXP r_displacements,
Expand Down
2 changes: 1 addition & 1 deletion src/IntegrateVelocityField.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ SEXP integrateVelocityFieldHelper(
}

// [[Rcpp::export]]
SEXP integrateVelocityField(
SEXP integrateVelocityFieldR(
SEXP r_dimensionality,
SEXP r_velocityField,
SEXP r_lowerBound,
Expand Down
2 changes: 1 addition & 1 deletion src/InvertDisplacementField.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ SEXP invertDisplacementFieldHelper(
}

// [[Rcpp::export]]
SEXP invertDisplacementField(
SEXP invertDisplacementFieldR(
SEXP r_dimensionality,
SEXP r_displacementField,
SEXP r_inverseFieldInitialEstimate,
Expand Down
2 changes: 1 addition & 1 deletion src/imagesToMatrix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Rcpp::NumericMatrix imagesToMatrixHelper( std::vector< std::string > fns,
}

// [[Rcpp::export]]
SEXP imagesToMatrix( SEXP r_fns, SEXP r_mask,
SEXP imagesToMatrixR( SEXP r_fns, SEXP r_mask,
SEXP r_n )
{
if( r_mask == NULL )
Expand Down
2 changes: 1 addition & 1 deletion src/reflectionMatrix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ SEXP reflectionMatrix( SEXP r_image, unsigned int axis, std::string filename )


// [[Rcpp::export]]
SEXP reflectionMatrix( SEXP r_image, SEXP r_axis, SEXP r_filename )
SEXP reflectionMatrixR( SEXP r_image, SEXP r_axis, SEXP r_filename )
{
try
{
Expand Down

0 comments on commit 73f9361

Please sign in to comment.