-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new function setmask to include mask definition, e.g. generated by fs…
…l_bet, in dtiData object
- Loading branch information
Joerg Polzehl
committed
Oct 17, 2022
1 parent
bb42234
commit 1a4b78f
Showing
5 changed files
with
72 additions
and
5 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: dti | ||
Version: 1.5.2 | ||
Date: 2020-05-19 | ||
Version: 1.5.3 | ||
Date: 2022-10-17 | ||
Title: Analysis of Diffusion Weighted Imaging (DWI) Data | ||
Authors@R: c(person("Karsten", "Tabelow", role = c("aut", "cre"), | ||
email = "[email protected]"), | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
%- Also NEED an '\alias' for EACH other topic documented here. | ||
\name{setmask-methods} | ||
\docType{methods} | ||
\alias{setmask} | ||
\alias{setmask-methods} | ||
\alias{setmask,ANY-method} | ||
\alias{setmask,dtiData-method} | ||
\title{ Methods for Function `setmask' in Package `dti' } | ||
\description{ | ||
Read mask definition from NIfTI file and include it in dtiData object | ||
} | ||
\usage{ | ||
\S4method{setmask}{dtiData}(object, maskfile) | ||
} | ||
%- maybe also 'usage' for other objects documented here. | ||
\arguments{ | ||
\item{object}{an object of class \code{"dtiData"}} | ||
\item{maskfile}{NIfTI file containing mask definition. Dimension need to be | ||
compatible, i.e. either equal \code{object@ddim0} or \code{object@ddim}} | ||
} | ||
\section{Methods}{ | ||
\describe{ | ||
\item{obj = "ANY"}{ Returns a warning } | ||
\item{obj = "dtiData"}{Set mask definition in dtiObject using information provided as NIfTI file as e.g. provided by \code{fsl_bet}. } | ||
} | ||
} | ||
\value{ | ||
The function returns an object of class \code{dtiData}. | ||
} | ||
\author{ | ||
Karsten Tabelow \email{[email protected]}\cr | ||
J\"org Polzehl \email{[email protected]} | ||
} | ||
\seealso{ | ||
\code{\link{dtiData}}, | ||
\code{\link{readDWIdata}}, | ||
} | ||
\keyword{ methods } |