http://www.emgu.com
Get a copy of the data values as an array
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic Array GetData(
bool jagged = true
)
Public Function GetData (
Optional jagged As Boolean = true
) As Array
public:
Array^ GetData(
bool jagged = true
)
member GetData :
?jagged : bool
(* Defaults:
let _jagged = defaultArg jagged true
*)
-> Array
Parameters
- jagged (Optional)
- Type: SystemBoolean
If true, a jagged array will returned. Otherwise it will return a regular array.
Return Value
Type:
Arraya copy of the data values as an array
See Also