evaluateProcess {flowQ} | R Documentation |
Re-evaluate an object of class qaProcess
, e.g. for the
case that a threshold value has changed.
evaluateProcess(process, thresh, ...)
process |
An object of class qaProcess . |
thresh |
The new treshold on which the process is to be evaluated. |
... |
Further arguments that are passed on to the individual functions for each QA process type. |
It is sometimes useful to update the state of aggregators in a
qaProcess
, for instances after changing the threshold
value, without having to recompute all images, which
can be very time consuming.
An updated object of class qaProcess
This function needs to be extended for new types of qaProcess
.
Florian Hahne
## Not run: data(GvHD) dest <- tempdir() qp1 <- qaProcess.timeline(GvHD[1:3], channel="FL1-H", outdir=dest, cutoff=1) evaluateProcess(qp1, thresh=4) ## End(Not run)