裁切是一種常見的影像處理任務,涉及擷取原始影像的所需部分。 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中文網其他相關文章!