HistCompMethods

Objective-C

NS_ENUM(int, HistCompMethods) {
    HISTCMP_CORREL = 0,
    HISTCMP_CHISQR = 1,
    HISTCMP_INTERSECT = 2,
    HISTCMP_BHATTACHARYYA = 3,
    HISTCMP_HELLINGER = HISTCMP_BHATTACHARYYA,
    HISTCMP_CHISQR_ALT = 4,
    HISTCMP_KL_DIV = 5
}

Swift

enum HistCompMethods : Int32
  • Declaration

    Objective-C

    HISTCMP_CORREL = 0

    Swift

    case HISTCMP_CORREL = 0
  • Declaration

    Objective-C

    HISTCMP_CHISQR = 1

    Swift

    case HISTCMP_CHISQR = 1
  • Declaration

    Objective-C

    HISTCMP_INTERSECT = 2

    Swift

    case HISTCMP_INTERSECT = 2
  • Declaration

    Objective-C

    HISTCMP_BHATTACHARYYA = 3

    Swift

    case HISTCMP_BHATTACHARYYA = 3
  • Declaration

    Objective-C

    HISTCMP_HELLINGER = HISTCMP_BHATTACHARYYA

    Swift

    static var HISTCMP_HELLINGER: HistCompMethods { get }
  • Declaration

    Objective-C

    HISTCMP_CHISQR_ALT = 4

    Swift

    case HISTCMP_CHISQR_ALT = 4
  • Declaration

    Objective-C

    HISTCMP_KL_DIV = 5

    Swift

    case HISTCMP_KL_DIV = 5