You are here: Start » AVL.NET » Invoke.FindMaxStableExtremalRegions
Segments an image by binarizing it with many different thresholds and by looking which blobs appear "stable".
| Namespace: | Avl | 
|---|---|
| Assembly: | AvlNet.dll | 
Syntax
C++
C#
public static void FindMaxStableExtremalRegions ( Avl.Image inImage, int inDelta, int inMinArea, int inMaxArea, float inMaxVariation, float inMinDiversity, Avl.RegionConnectivity inConnectivity, List<Avl.Region> outRegions )
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]()  | inImage | Avl.Image | Input image. | ||
![]()  | inDelta | int | <1, 255> | 30 | Area variance is calculated against ancestor with color difference of delta. Default value: 30. | 
![]()  | inMinArea | int | <0, INF> | 50 | Minimum area of stable region. Default value: 50. | 
![]()  | inMaxArea | int | <0, INF> | 2000 | Maximum area of stable region. Default value: 2000. | 
![]()  | inMaxVariation | float | <0.0f, INF> | 0.1f | Maximum area variance with containing larger region specified by delta parameter, for region to be considered as stable. Default value: 0.1f. | 
![]()  | inMinDiversity | float | <0.0f, INF> | 2.0f | Minimum area diversity that region must have in order to be stable when compared to stable regions within it. Default value: 2.0f. | 
![]()  | inConnectivity | Avl.RegionConnectivity | EightDirections | Default value: EightDirections. | |
![]()  | outRegions | System.Collections.Generic.List<Avl.Region> | 


