This function returns the configuration options for compiling
C/C++-based packages against OpenCV installed by ROpenCVLite
.
Value
A concatenated character string (with cat
) of the
configuration options.
Author
Simon Garnier, garnier@njit.edu
Examples
if (FALSE) { # \dontrun{
if (isOpenCVInstalled()) {
opencvConfig()
opencvConfig(output = "cflags")
opencvConfig(arch = R.version$arch)
}
} # }