Locates the matrix header within a parent matrix.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic void LocateROI(
out Size wholeSize,
out Point ofs
)
Public Sub LocateROI (
<OutAttribute> ByRef wholeSize As Size,
<OutAttribute> ByRef ofs As Point
)
public:
void LocateROI(
[OutAttribute] Size% wholeSize,
[OutAttribute] Point% ofs
)
member LocateROI :
wholeSize : Size byref *
ofs : Point byref -> unit
function LocateROI(wholeSize, ofs);
Parameters
- wholeSize
- Type: OpenCvSharpSize
Output parameter that contains the size of the whole matrix containing *this as a part. - ofs
- Type: OpenCvSharpPoint
Output parameter that contains an offset of *this inside the whole matrix.
See Also