当前位置:   article > 正文

python opencv二值化代码

调用opencv实现图像二值化代码

以下是一个 Python + OpenCV 实现图像二值化的代码示例:

  1. import cv2
  2. import numpy as np
  3. # 读入图像
  4. img = cv2.imread("image.jpg", 0)
  5. # 阈值处理
  6. _, thresh = cv2.threshold(img, 127, 255, cv2.THRESH_BINARY)
  7. # 展示图像
  8. cv2.imshow("Thresholded Image", thresh)
  9. cv2.waitKey(0)
  10. cv2.destroyAllWindows()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

这段代码首先读入了一张图片 image.jpg,然后

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/人工智能uu/article/detail/954898
推荐阅读
相关标签
  

闽ICP备14008679号