Example #1
0
 /// <summary>
 /// Converts MSER contours (vector of point) to ERStat regions.
 /// </summary>
 /// <param name="image">Source image CV_8UC1 from which the MSERs where extracted.</param>
 /// <param name="contours">Input vector with all the contours (vector of Point).</param>
 /// <param name="regions">Output where the ERStat regions are stored.</param>
 public static void MSERsToERStats(
     IInputArray image,
     VectorOfVectorOfPoint contours,
     VectorOfVectorOfERStat regions)
 {
     using (InputArray iaImage = image.GetInputArray())
     {
         cveMSERsToERStats(iaImage, contours, regions);
     }
 }
 /// <summary>
 /// Push multiple values from the other vector into this vector
 /// </summary>
 /// <param name="other">The other vector, from which the values will be pushed to the current vector</param>
 public void Push(VectorOfVectorOfERStat other)
 {
     VectorOfVectorOfERStatPushVector(_ptr, other);
 }
 public DebuggerProxy(VectorOfVectorOfERStat v)
 {
     _v = v;
 }