Browse Source

Added RetrType.Floodfill for FindContours function.

pull/348/merge
Canming Huang 5 years ago
parent
commit
ff01621af8
  1. 6
      Emgu.CV/PInvoke/CvEnum/RetrType.cs

6
Emgu.CV/PInvoke/CvEnum/RetrType.cs

@ -26,6 +26,10 @@ namespace Emgu.CV.CvEnum
/// <summary>
/// Retrieve all the contours and reconstructs the full hierarchy of nested contours
/// </summary>
Tree = 3
Tree = 3,
/// <summary>
/// Flood fill type
/// </summary>
Floodfill = 4
}
}
Loading…
Cancel
Save