mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-26 13:37:17 +08:00
21 lines
361 B
Python
21 lines
361 B
Python
|
|
#############################################
|
|
# Constants (need a better place for these)
|
|
############################################
|
|
|
|
|
|
CV_BLUR_NO_SCALE = 0
|
|
CV_BLUR = 1
|
|
CV_GAUSSIAN = 2
|
|
CV_MEDIAN = 3
|
|
CV_BILATERAL = 4
|
|
|
|
CV_TERMCRIT_NUMBER = 1
|
|
CV_TERMCRIT_ITER = 1
|
|
CV_TERMCRIT_EPS = 2
|
|
|
|
CV_INTER_NN = 0
|
|
CV_INTER_LINEAR = 1
|
|
CV_INTER_CUBIC = 2
|
|
CV_INTER_AREA = 3
|