http://www.emgu.com
Allocates new array data if needed.
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic void Create(
int rows,
int cols,
DepthType type,
int channels,
UMatUsage usage = UMatUsage.Default
)
Public Sub Create (
rows As Integer,
cols As Integer,
type As DepthType,
channels As Integer,
Optional usage As UMatUsage = UMatUsage.Default
)
public:
void Create(
int rows,
int cols,
DepthType type,
int channels,
UMatUsage usage = UMatUsage::Default
)
member Create :
rows : int *
cols : int *
type : DepthType *
channels : int *
?usage : UMatUsage
(* Defaults:
let _usage = defaultArg usage UMatUsage.Default
*)
-> unit
Parameters
- rows
- Type: SystemInt32
New number of rows. - cols
- Type: SystemInt32
New number of columns. - type
- Type: Emgu.CV.CvEnumDepthType
New matrix element depth type. - channels
- Type: SystemInt32
New matrix number of channels - usage (Optional)
- Type: Emgu.CVUMatUsage
Allocation Usage
See Also