Enum ConnectedComponentsAlgorithmsTypes
- Namespace
- OpenCvSharp
- Assembly
- OpenCvSharp.dll
connected components algorithm
public enum ConnectedComponentsAlgorithmsTypes
Fields
BBDT = 4Same as CCL_GRANA. It is preferable to use the flag with the name of the algorithm (CCL_BBDT) rather than the one with the name of the first author (CCL_GRANA).
BOLELLI = 2Spaghetti @cite Bolelli2019 algorithm for 8-way connectivity, SAUF algorithm for 4-way connectivity.
Default = -1BBDT algorithm for 8-way connectivity, SAUF algorithm for 4-way connectivity
GRANA = 1BBDT algorithm for 8-way connectivity, SAUF algorithm for 4-way connectivity
SAUF = 3Same as CCL_WU. It is preferable to use the flag with the name of the algorithm (CCL_SAUF) rather than the one with the name of the first author (CCL_WU).
SPAGHETTI = 5Same as CCL_BOLELLI. It is preferable to use the flag with the name of the algorithm (CCL_SPAGHETTI) rather than the one with the name of the first author (CCL_BOLELLI).
WU = 0SAUF algorithm for 8-way connectivity, SAUF algorithm for 4-way connectivity