gpt4 book ai didi

python - OpenCV:了解 warpPerspective/透视变换

转载 作者:太空宇宙 更新时间:2023-11-03 21:07:52 26 4
gpt4 key购买 nike

我为自己做了一个小例子来尝试使用 OpenCVs wrapPerspective,但输出并不完全符合我的预期。

我的输入是一个 45° 角的条。我想对其进行转换,使其垂直对齐/呈 90° 角。没问题。然而,我不明白的是,实际目的地点周围的一切都是黑色的。我不明白这一点的原因是,实际上只有转换矩阵被传递给 wrapPerspective 函数,而不是目标点本身。所以我的预期输出将是一个 90° 角的条形,并且它周围的大部分是黄色而不是黑色。我的推理错误在哪里?

# helper function
def showImage(img, title):
fig = plt.figure()
plt.suptitle(title)
plt.imshow(img)


# read and show test image
img = mpimg.imread('test_transform.jpg')
showImage(img, "input image")


# source points
top_left = [194,430]
top_right = [521,103]
bottom_right = [549,131]
bottom_left = [222,458]
pts = np.array([bottom_left,bottom_right,top_right,top_left])


# target points
y_off = 400; # y offset
top_left_dst = [top_left[0], top_left[1] - y_off]
top_right_dst = [top_left_dst[0] + 39.6, top_left_dst[1]]
bottom_right_dst = [top_right_dst[0], top_right_dst[1] + 462.4]
bottom_left_dst = [top_left_dst[0], bottom_right_dst[1]]
dst_pts = np.array([bottom_left_dst, bottom_right_dst, top_right_dst, top_left_dst])

# generate a preview to show where the warped bar would end up
preview=np.copy(img)
cv2.polylines(preview,np.int32([dst_pts]),True,(0,0,255), 5)
cv2.polylines(preview,np.int32([pts]),True,(255,0,255), 1)
showImage(preview, "preview")


# calculate transformation matrix
pts = np.float32(pts.tolist())
dst_pts = np.float32(dst_pts.tolist())
M = cv2.getPerspectiveTransform(pts, dst_pts)

# wrap image and draw the resulting image
image_size = (img.shape[1], img.shape[0])
warped = cv2.warpPerspective(img, M, dsize = image_size, flags = cv2.INTER_LINEAR)
showImage(warped, "warped")

使用这段代码的结果是:

enter image description here

这是我的输入图像 test_transform.jpg: enter image description here这是添加了坐标的同一图像: enter image description here

根据要求,这里是转换矩阵:

[[  6.05504680e-02  -6.05504680e-02   2.08289910e+02]
[ 8.25714275e+00 8.25714275e+00 -5.12245707e+03]
[ 2.16840434e-18 3.03576608e-18 1.00000000e+00]]

最佳答案

您在数组中的顺序或它们的位置可能是错误的。检查这个转换后的图像:dst_pts 数组是:np.array([[196,492],[233,494],[234,32],[196,34]]),这或多或少类似于预览图像中的蓝色矩形。 (我自己做了坐标以确保它们是正确的)注意:您的源点和目标点应该按正确的顺序

enter image description here

关于python - OpenCV:了解 warpPerspective/透视变换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45717277/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com