使用 Python 在 OpenCV 中裁剪图像
要在 OpenCV 中裁剪图像,与 PIL 不同,您可以使用 NumPy 切片。操作方法如下:
import cv2 img = cv2.imread("image.jpg")
crop_img = img[y:y+h, x:x+w]
cv2.imshow("Cropped Image", crop_img) cv2.waitKey(0)
getRectSubPix 的错误使用
在你的尝试,getRectSubPix 被错误地使用。此函数用于在图像上绘制矩形而不是裁剪它。
以上是如何使用 NumPy 切片在 OpenCV 中裁剪图像?的详细内容。更多信息请关注PHP中文网其他相关文章!