Table of Contents

Enum ConnectedComponentsAlgorithmsTypes

Namespace
Emgu.CV.CvEnum
Assembly
Emgu.CV.dll

Connected Components Algorithms Types

public enum ConnectedComponentsAlgorithmsTypes

Fields

Bbdt = 4

Same as Grana. It is preferable to use the flag with the name of the algorithm (BBDT) rather than the one with the name of the first author (Grana).

Bolelli = 2

Spaghetti algorithm for 8-way connectivity, Spaghetti4C algorithm for 4-way connectivity. The parallel implementation described is available for both Spaghetti and Spaghetti4C.

Default = -1

Spaghetti algorithm for 8-way connectivity, Spaghetti4C algorithm for 4-way connectivity.

Grana = 1

BBDT algorithm for 8-way connectivity, SAUF algorithm for 4-way connectivity. The parallel implementation is available for both BBDT and SAUF.

Sauf = 3

Same as WU. It is preferable to use the flag with the name of the algorithm (SAUF) rather than the one with the name of the first author (Wu).

Spaghetti = 5

Same as Bolelli. It is preferable to use the flag with the name of the algorithm (Spaghetti) rather than the one with the name of the first author (Bolelli).

Wu = 0

SAUF algorithm for 8-way connectivity, SAUF algorithm for 4-way connectivity. The parallel implementation described is available for SAUF.