SmoothMethod_c

Objective-C

NS_ENUM(int, SmoothMethod_c) {
    CV_BLUR_NO_SCALE = 0,
    CV_BLUR = 1,
    CV_GAUSSIAN = 2,
    CV_MEDIAN = 3,
    CV_BILATERAL = 4
}

Swift

enum SmoothMethod_c : Int32
  • Declaration

    Objective-C

    CV_BLUR_NO_SCALE = 0

    Swift

    case CV_BLUR_NO_SCALE = 0
  • Declaration

    Objective-C

    CV_BLUR = 1

    Swift

    case CV_BLUR = 1
  • Declaration

    Objective-C

    CV_GAUSSIAN = 2

    Swift

    case CV_GAUSSIAN = 2
  • Declaration

    Objective-C

    CV_MEDIAN = 3

    Swift

    case CV_MEDIAN = 3
  • Declaration

    Objective-C

    CV_BILATERAL = 4

    Swift

    case CV_BILATERAL = 4