当前位置:   article > 正文

python opencv图像剪裁

python opencv对图片进行裁剪

在 Python 中使用 OpenCV 可以对图像进行剪裁。首先需要导入 OpenCV 库,然后使用 cv2.imread() 读取图片。然后使用 numpy 中的切片功能对图片进行剪裁。

代码示例如下:

  1. import cv2
  2. import numpy as np
  3. img = cv2.imread('image.jpg')
  4. height, width = img.shape[:2]
  5. start_row, start_col = int(height * .25), int(width * .25)
  6. end_row, end_col = int(height *
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/77476
推荐阅读
相关标签
  

闽ICP备14008679号