天天看點

python寫透視挂_python – OpenCV透視變換給出了意想不到的結果

你的方法是正确的.指定角點的坐标時會出現問題.我不知道你是如何計算它們的,但你已經交換了你的X軸和Y軸.這反映在應用于最終圖像的變換中.我發現角點是:

ptsTrap = [[[ 99. 51.]]

[[ 64. 251.]]

[[ 234. 251.]]

[[ 199. 51.]]]

ptsRect = [[[ 102. 49.]]

[[ 100. 249.]]

[[ 200. 250.]]

[[ 200. 50.]]]

從這些點中查找透視變換會得到正确的結果:

作為參考,這是我使用的代碼:

import cv2

import numpy as np

def find_corners(image):

im = cv2.Canny(image,100,200)

cnt = cv2.findContours(im,cv2.RETR_EXTERNAL,cv2.CHAIN_APPROX_SIMPLE)[0]

cnt = cv2.approxPolyDP(cnt[0],5,True)

return cnt.astype(np.float32)

def main(argv):

trap = cv2.imread('trap.png',cv2.IMREAD_GRAYSCALE)

rect = cv2.imread('rect.png',cv2.IMREAD_GRAYSCALE)

ptsTrap = find_corners(trap)

ptsRect = find_corners(rect)

T = cv2.getPerspectiveTransform(ptsTrap,ptsRect)

warp = cv2.warpPerspective(trap,rect.shape[:2])

cv2.imshow('',warp)

cv2.imwrite('warp.png',warp)

cv2.waitKey()

cv2.destroyAllWindows()