http://www.emgu.com
Create an opencl kernel
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntaxpublic bool Create(
string kernelName,
OclProgramSource programSource,
string buildOps = null,
CvString errMsg = null
)
Public Function Create (
kernelName As String,
programSource As OclProgramSource,
Optional buildOps As String = Nothing,
Optional errMsg As CvString = Nothing
) As Boolean
public:
bool Create(
String^ kernelName,
OclProgramSource^ programSource,
String^ buildOps = nullptr,
CvString^ errMsg = nullptr
)
member Create :
kernelName : string *
programSource : OclProgramSource *
?buildOps : string *
?errMsg : CvString
(* Defaults:
let _buildOps = defaultArg buildOps null
let _errMsg = defaultArg errMsg null
*)
-> bool
Parameters
- kernelName
- Type: SystemString
The name of the kernel - programSource
- Type: Emgu.CVOclProgramSource
The program source code - buildOps (Optional)
- Type: SystemString
The build options - errMsg (Optional)
- Type: Emgu.CVCvString
Option error message container that can be passed to this function
Return Value
Type:
BooleanTrue if the kernel can be created
See Also