首頁 >後端開發 >Python教學 >如何在 Python 中使用 OpenCV 裁切影像?

如何在 Python 中使用 OpenCV 裁切影像?

Barbara Streisand
Barbara Streisand原創
2024-12-04 08:02:11707瀏覽

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
上一篇:Python 入門日下一篇:Python 入門日