FeatureType

Objective-C

NS_ENUM(int, FeatureType) {
    CvFeatureParams_HAAR = 0,
    CvFeatureParams_LBP = 1,
    CvFeatureParams_HOG = 2
}

Swift

enum FeatureType : Int32
  • Declaration

    Objective-C

    CvFeatureParams_HAAR = 0

    Swift

    case CvFeatureParams_HAAR = 0
  • Declaration

    Objective-C

    CvFeatureParams_LBP = 1

    Swift

    case CvFeatureParams_LBP = 1
  • Declaration

    Objective-C

    CvFeatureParams_HOG = 2

    Swift

    case CvFeatureParams_HOG = 2