-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix dependency warnings for r cmd check
- Loading branch information
ncullen93
committed
Mar 24, 2024
1 parent
625fd61
commit ceb0bcc
Showing
13 changed files
with
107 additions
and
146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,11 +5,11 @@ Version: 0.6.0 | |
Date: 2024-03-23 | ||
Authors@R: c( | ||
person(c("Brian", "B"), "Avants", role = c("aut", "cre"), email = "[email protected]"), | ||
person(c("Benjamin", "M"), "Kandel", role = "ctb", email = "NA"), | ||
person(c("Jeff", "T"), "Duda", role = "ctb", email = "NA"), | ||
person(c("Philip", "A"), "Cook", role = "ctb", email = "NA"), | ||
person(c("Nicholas", "J"), "Tustison", role = "ctb", email = "NA"), | ||
person(c("Dorian"), "Pustina", role = "ctb", email = "NA") | ||
person(c("Benjamin", "M"), "Kandel", role = "ctb"), | ||
person(c("Jeff", "T"), "Duda", role = "ctb"), | ||
person(c("Philip", "A"), "Cook", role = "ctb"), | ||
person(c("Nicholas", "J"), "Tustison", role = "ctb"), | ||
person(c("Dorian"), "Pustina", role = "ctb") | ||
) | ||
Maintainer: Brian B. Avants <[email protected]> | ||
Description: ANTsR interfaces state of the art image processing with R | ||
|
@@ -33,6 +33,7 @@ Imports: | |
stats, | ||
utils | ||
Suggests: | ||
colormap, | ||
magic, | ||
rsvd, | ||
abind, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#' @title Advanced Normalization Tools in R | ||
#' @name ANTsR | ||
#' | ||
#' @importFrom stats AIC | ||
#' | ||
#' @import ANTsRCore | ||
#' | ||
#' @keywords internal | ||
"_PACKAGE" | ||
# The following block is used by usethis to automatically manage | ||
# roxygen namespace tags. Modify with care! | ||
## usethis namespace: start | ||
## usethis namespace: end | ||
NULL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#' composeDisplacementFields | ||
#' | ||
#' Compose displacement fields. | ||
#' | ||
#' @param displacementField displacement field. | ||
#' @param warpingField warping field. | ||
#' @return composite displacement field | ||
#' | ||
#' @author NJ Tustison | ||
#' | ||
#' @export composeDisplacementFields | ||
composeDisplacementFields <- function( | ||
displacementField, | ||
warpingField | ||
) { | ||
|
||
dimensionality <- displacementField@dimension | ||
|
||
compField <- ANTsRCore::composeDisplacementFields( | ||
dimensionality, | ||
displacementField, | ||
warpingField) | ||
return( compField ) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.