http://www.emgu.com
Create an OclImage2D object from UMat
Namespace:
Emgu.CV.Ocl
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic Image2D(
UMat src,
bool norm = false,
bool alias = false
)
Public Sub New (
src As UMat,
Optional norm As Boolean = false,
Optional alias As Boolean = false
)
public:
Image2D(
UMat^ src,
bool norm = false,
bool alias = false
)
new :
src : UMat *
?norm : bool *
?alias : bool
(* Defaults:
let _norm = defaultArg norm false
let _alias = defaultArg alias false
*)
-> Image2D
Parameters
- src
- Type: Emgu.CVUMat
The UMat from which to get image properties and data - norm (Optional)
- Type: SystemBoolean
Flag to enable the use of normalized channel data types - alias (Optional)
- Type: SystemBoolean
Flag indicating that the image should alias the src UMat. If true, changes to the image or src will be reflected in both objects.
See Also