首页 >后端开发 >Python教程 >如何在 Python 中使用 OpenCV 裁剪图像?

如何在 Python 中使用 OpenCV 裁剪图像?

Barbara Streisand
Barbara Streisand原创
2024-12-04 08:02:11757浏览

How to Crop an Image Using OpenCV in Python?

在 Python 中使用 OpenCV 裁剪图像

裁剪是一种常见的图像处理任务,涉及提取原始图像的所需部分。 OpenCV 是一个流行的图像处理库,提供了多种裁剪图像的方法。这是使用 NumPy 切片的简单实用方法:

import cv2

# Read the original image
img = cv2.imread("lenna.png")

# Define the coordinates of the cropping rectangle
x = 100  # Starting x-coordinate
y = 100  # Starting y-coordinate
w = 200  # Width of the rectangle
h = 150  # Height of the rectangle

# Perform cropping using NumPy slicing
crop_img = img[y:y+h, x:x+w]

# Display the cropped image
cv2.imshow("Cropped Image", crop_img)
cv2.waitKey(0)
cv2.destroyAllWindows()

此代码有效地裁剪原始图像的指定部分并显示裁剪结果。调整 x、y、w 和 h 的值以裁剪图像的不同部分。

以上是如何在 Python 中使用 OpenCV 裁剪图像?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn