Skip to content

Commit

Permalink
add ConnectedComponentsAlgorithmsTypes' new values
Browse files Browse the repository at this point in the history
  • Loading branch information
shimat committed Apr 4, 2021
1 parent b364220 commit 3addd84
Showing 1 changed file with 21 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,26 @@ public enum ConnectedComponentsAlgorithmsTypes
/// <summary>
/// BBDT algorithm for 8-way connectivity, SAUF algorithm for 4-way connectivity
/// </summary>
GRANA = 1
GRANA = 1,

/// <summary>
/// Spaghetti @cite Bolelli2019 algorithm for 8-way connectivity, SAUF algorithm for 4-way connectivity.
/// </summary>
BOLELLI = 2,

/// <summary>
/// Same 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).
/// </summary>
SAUF = 3,

/// <summary>
/// Same 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).
/// </summary>
BBDT = 4,

/// <summary>
/// Same 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).
/// </summary>
SPAGHETTI = 5,
}
}

0 comments on commit 3addd84

Please sign in to comment.