add_reglist {nat.templatebrains} | R Documentation |
Add reglist object describing a bridging/mirroring registration
Description
By specifying either reference, sample
or
mirror
arguments, you can add a bridging or mirroring registration,
respectively, to the list of those in use for xform_brain
and
mirror_brain
.
Usage
add_reglist(
x,
reference = NULL,
sample = NULL,
mirror = NULL,
temp = TRUE,
...
)
Arguments
x |
A single |
reference , sample |
The reference and sample brains (in |
mirror |
The reference brain (in |
temp |
Whether to store the on disk representation in a session-specific
temporary folder (that will be removed when R closes). Defaults to
|
... |
Additional arguments passed to |
Value
This function is called for its side effect and has no return value.
See Also
add_reg_folders
Examples
## Not run:
library(nat.flybrains)
# mirroring registration for a specific template brain object
add_reglist(mirroring, mirror=JFRC2013)
# equivalent but withhout needing to construct the template
add_reglist(mirroring, mirror="JFRC2013")
# add a bridging registration between two brains
add_reglist(bridging, reference=JFRC2, sample=JFRC2013)
## End(Not run)
[Package nat.templatebrains version 1.1 Index]