plot3d.cmtkreg {nat} | R Documentation |
Plot the domain of a CMTK registration
Description
Plot the domain of a CMTK registration
Usage
## S3 method for class 'cmtkreg'
plot3d(x, ...)
Arguments
x |
A cmtk registration (the path to the registration folder on disk) or
the resulting of reading one in with |
... |
Additional arguments passed to |
See Also
Examples
## Not run:
testdatadir=system.file("tests/testthat/testdata/cmtk", package="nat")
regpath=file.path(testdatadir,'FCWB_JFRC2_01_warp_level-01.list/')
plot3d(cmtkreg(regpath))
# or read registration into memory if you want to work with it
reg=read.cmtkreg(regpath)
# nb calling plot3d.cmtkreg directly (rather than using the generic plot3d)
# is considered bad style but read.cmtkreg returns a plain list
# so method dispatch will fail
nat:::plot3d.cmtkreg(reg)
## End(Not run)
[Package nat version 1.8.24 Index]