Displaying 1 result from an estimated 1 matches for "addglobalimagefunc".
2001 Mar 01
0
Finalization and external pointer objects
...2)
{
if (!is.image(src))
stop("Parameter 'src' should be an image.")
output <- POINTER
output<-.C("Rimquickthresh", val = output, (src), as.double(p1),
as.integer(p2))$val
if (output == POINTER)
return(0)
class(output) <- c("image")
AddGlobalImageFunc(output)
output
}
The AddGlobalImageFunc is related to my GC mechanism.
POINTER is as.integer(0) or as.double(0), depending on platform.
This is mostly generated automatically. I'd really like to discard my GC
mechanism and make use of the special facilities that are being
developed. So far...