http://www.emgu.com
Execute the kernel
Namespace:
Emgu.CV.Ocl
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic bool Run(
IntPtr[] globalsize,
IntPtr[] localsize,
bool sync,
Queue q = null
)
Public Function Run (
globalsize As IntPtr(),
localsize As IntPtr(),
sync As Boolean,
Optional q As Queue = Nothing
) As Boolean
public:
bool Run(
array<IntPtr>^ globalsize,
array<IntPtr>^ localsize,
bool sync,
Queue^ q = nullptr
)
member Run :
globalsize : IntPtr[] *
localsize : IntPtr[] *
sync : bool *
?q : Queue
(* Defaults:
let _q = defaultArg q null
*)
-> bool
Parameters
- globalsize
- Type: SystemIntPtr
The global size - localsize
- Type: SystemIntPtr
The local size - sync
- Type: SystemBoolean
If true, the code is run synchronously (blocking) - q (Optional)
- Type: Emgu.CV.OclQueue
Optional Opencl queue
Return Value
Type:
BooleanTrue if the execution is sucessful
See Also