溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Python怎么使用OpenCV進(jìn)行圖像投影變換

發(fā)布時間:2022-08-24 16:37:34 來源:億速云 閱讀:226 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要介紹了Python怎么使用OpenCV進(jìn)行圖像投影變換的相關(guān)知識,內(nèi)容詳細(xì)易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇Python怎么使用OpenCV進(jìn)行圖像投影變換文章都會有所收獲,下面我們一起來看看吧。

投影變換(仿射變換)

在數(shù)學(xué)中,線性變換是將一個向量空間映射到另一個向量空間的函數(shù),通常由矩陣實(shí)現(xiàn)。如果映射保留向量加法和標(biāo)量乘法,則映射被認(rèn)為是線性變換。

要將線性變換應(yīng)用于向量(即,一個點(diǎn)的坐標(biāo),在我們的例子中——像素的 x 和 y 值),需要將該向量乘以表示線性變換的矩陣。作為輸出,你將獲得一個坐標(biāo)轉(zhuǎn)換后的向量。

投影變換可以用以下矩陣表示:

Python怎么使用OpenCV進(jìn)行圖像投影變換

其中:

Python怎么使用OpenCV進(jìn)行圖像投影變換

是一個旋轉(zhuǎn)矩陣。該矩陣定義了將要執(zhí)行的變換類型:縮放、旋轉(zhuǎn)等。

Python怎么使用OpenCV進(jìn)行圖像投影變換

是平移向量。它只是移動點(diǎn)。

Python怎么使用OpenCV進(jìn)行圖像投影變換

是投影向量。對于仿射變換,該向量的所有元素始終等于 0。

如果 x 和 y 是一個點(diǎn)的坐標(biāo),則可以通過簡單的乘法進(jìn)行變換:

Python怎么使用OpenCV進(jìn)行圖像投影變換

這里,x' 和 y' 是變換點(diǎn)的坐標(biāo)。

這就是仿射變換的全部理論?,F(xiàn)在我將深入研究該程序:

步驟 1:讀取源圖像并獲取源圖像大?。?/strong>

# Read source image
img_src = cv2.imread('source_image.jpg')
h, w, c = img_src.shape
 
# Get source image parameter: 
#[[left,top], [left,bottom], [right, top], [right, bottom]]
 
img_src_coordinate = np.array([[0,0],[0,h],[w,0],[w,h]])

根據(jù)源圖像,我們將得到相關(guān)坐標(biāo)如下:

[[左,上],[左,下],[右,上],[右,下]]

好的!現(xiàn)在我們使用 get_paste_position 來獲取目標(biāo)圖像中的坐標(biāo),源圖像將被粘貼到該坐標(biāo)。

def get_paste_position(event, x, y, flags, paste_coordinate_list):
    cv2.imshow('collect coordinate', img_dest_copy)
    if event == cv2.EVENT_LBUTTONUP:
    # Draw circle right in click position
    cv2.circle(img_dest_copy, (x, y), 2, (0, 0, 255), -1)
    # Append new clicked coordinate to paste_coordinate_list
    paste_coordinate_list.append([x, y])

點(diǎn)擊4個點(diǎn)后,我們將4個點(diǎn)保存到paste_coordinate_list:

while True:
    cv2.waitKey(1)
    if len(paste_coordinate) == 4:
        break

然后,這 4 個點(diǎn)將通過 cv2.findHomography 計算投影變換矩陣。

matrix, _ = cv2.findHomography(img_src_coordinate, paste_coordinate, 0)

得到投影變換矩陣后,我們將使用 cv2.warpPerspective 將源圖像轉(zhuǎn)換為具有目標(biāo)圖像大小的透視圖像。

perspective_img = cv2.warpPerspective(img_src, matrix, (img_dest.shape[1], img_dest.shape[0]))

完整代碼:

import cv2 as cv2
import numpy as np
 
# This function will get click pixel coordinate that source image will be pasted to destination image
def get_paste_position(event, x, y, flags, paste_coordinate_list):
    cv2.imshow('collect coordinate', img_dest_copy)
    if event == cv2.EVENT_LBUTTONUP:
    # Draw circle right in click position
    cv2.circle(img_dest_copy, (x, y), 2, (0, 0, 255), -1)

    # Append new clicked coordinate to paste_coordinate_list
    paste_coordinate_list.append([x, y])
if __name__ == '__main__':
    
    # Read source image
    img_src = cv2.imread('woman-1807533_960_720.webp', cv2.IMREAD_COLOR)
    
    # cv2.imwrite('source_image.jpg', img_src)
    h, w, c = img_src.shape
    
    # Get source image parameter: [[left,top], [left,bottom], [right, top], [right, bottom]]
    img_src_coordinate = np.array([[0,0],[0,h],[w,0],[w,h]])
    
    # Read destination image
    img_dest = cv2.imread('billboard-g7005ff0f9_1920.jpg', cv2.IMREAD_COLOR)
    
    # copy destination image for get_paste_position (Just avoid destination image will be draw)
    img_dest_copy = img_dest.copy()#np.tile(img_dest, 1)
    
    # paste_coordinate in destination image
    paste_coordinate = []
    cv2.namedWindow('collect coordinate')
    cv2.setMouseCallback('collect coordinate', get_paste_position, paste_coordinate)
    
    while True:
        cv2.waitKey(1)
        if len(paste_coordinate) == 4:
            break
    paste_coordinate = np.array(paste_coordinate)
    
    # Get perspective matrix
    matrix, _ = cv2.findHomography(img_src_coordinate, paste_coordinate, 0)
    print(f'matrix: {matrix}')
    perspective_img = cv2.warpPerspective(img_src, matrix, (img_dest.shape[1], img_dest.shape[0]))
    cv2.imshow('img', perspective_img)
    cv2.copyTo(src=perspective_img, mask=np.tile(perspective_img, 1), dst=img_dest)
    cv2.imshow('result', img_dest)
    cv2.waitKey()
    cv2.destroyAllWindows()

關(guān)于“Python怎么使用OpenCV進(jìn)行圖像投影變換”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“Python怎么使用OpenCV進(jìn)行圖像投影變換”知識都有一定的了解,大家如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI