| MatReserve Method |
Reserves space for the certain number of rows.
The method reserves space for sz rows. If the matrix already has enough space to store sz rows,
nothing happens. If the matrix is reallocated, the first Mat::rows rows are preserved. The method
emulates the corresponding method of the STL vector class.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public void Reserve(
int sz
)
Public Sub Reserve (
sz As Integer
)
public:
void Reserve(
int sz
)
member Reserve :
sz : int -> unit
Parameters
- sz
- Type: SystemInt32
Number of rows.
See Also