| MatReserveBuffer Method |
Reserves space for the certain number of bytes.
The method reserves space for sz bytes. If the matrix already has enough space to store sz bytes,
nothing happens. If matrix has to be reallocated its previous content could be lost.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public void ReserveBuffer(
int sz
)
Public Sub ReserveBuffer (
sz As Integer
)
public:
void ReserveBuffer(
int sz
)
member ReserveBuffer :
sz : int -> unit
Parameters
- sz
- Type: SystemInt32
Number of bytes.
See Also