裁剪是一种常见的图像处理任务,涉及提取原始图像的所需部分。 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中文网其他相关文章!