| MatAdjustROI Method |
Adjusts a submatrix size and position within the parent matrix.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public Mat AdjustROI(
int dtop,
int dbottom,
int dleft,
int dright
)
Public Function AdjustROI (
dtop As Integer,
dbottom As Integer,
dleft As Integer,
dright As Integer
) As Mat
public:
Mat^ AdjustROI(
int dtop,
int dbottom,
int dleft,
int dright
)
member AdjustROI :
dtop : int *
dbottom : int *
dleft : int *
dright : int -> Mat
Parameters
- dtop
- Type: SystemInt32
Shift of the top submatrix boundary upwards. - dbottom
- Type: SystemInt32
Shift of the bottom submatrix boundary downwards. - dleft
- Type: SystemInt32
Shift of the left submatrix boundary to the left. - dright
- Type: SystemInt32
Shift of the right submatrix boundary to the right.
Return Value
Type:
Mat[Missing <returns> documentation for "M:OpenCvSharp.Mat.AdjustROI(System.Int32,System.Int32,System.Int32,System.Int32)"]
See Also