BlobMergingMethod
Description
Changes classification method in gray based image segmentation.
Values of this enumeration:
- Neighbor - Two blobs can be merged together if there are two neighboring pixels that are similar enough.
- NeighborVerified - Two blobs can be merged together if there are two neighboring pixels that are similar enough; improved.
- MeanLinear - Two blobs can be merged together if their average values are similar enough. Linear pass.
- MeanSorted - Two blobs can be merged together if their average values are similar enough. Sorted pass.
namespace BlobMergingMethod
{
enum Type
{
Neighbor,
NeighborVerified,
MeanLinear,
MeanSorted
};
}
