Mat Constructor (Mat, Range, Range) |
http://www.emgu.com
Create a mat header for the specific ROI
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic Mat(
Mat mat,
Range rowRange,
Range colRange
)
Public Sub New (
mat As Mat,
rowRange As Range,
colRange As Range
)
public:
Mat(
Mat^ mat,
Range rowRange,
Range colRange
)
new :
mat : Mat *
rowRange : Range *
colRange : Range -> Mat
Parameters
- mat
- Type: Emgu.CVMat
The mat where the new Mat header will share data from - rowRange
- Type: Emgu.CV.StructureRange
The region of interest - colRange
- Type: Emgu.CV.StructureRange
The region of interest
See Also