using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.TCC.BL { public enum CardDetectionHistogramMethods { Correlation = 0, Chi_Square = 1, Intersection = 2, BhattacharyyaDistance = 3, None = 4, } }