1 | initial version |
|
and +
are equivalent operations>>> help(cv2.threshold)
Help on built-in function threshold:
threshold(...)
threshold(src, thresh, maxval, type[, dst]) -> retval, dst
in your case above it means: keep only the image, and discard the threshold value.
2 | No.2 Revision |
|
and +
are equivalent operations>>> help(cv2.threshold)
Help on built-in function threshold:
threshold(...)
threshold(src, thresh, maxval, type[, dst]) -> retval, dst
in your case above it means: keep only the image, and discard the threshold value.