Example #1
0
 /// <summary>
 /// Create a mat header for the specific ROI
 /// </summary>
 /// <param name="mat">The mat where the new Mat header will share data from</param>
 /// <param name="rowRange">The region of interest</param>
 /// <param name="colRange">The region of interest</param>
 public Mat(Mat mat, Range rowRange, Range colRange)
     : this(MatInvoke.cveMatCreateFromRange(mat.Ptr, ref rowRange, ref colRange), true, true)
 {
 }