opencv 图片位移

时间:2023-12-15 13:20:56
 import cv2 as cv
import numpy as np # 图片移位
img = cv.imread('../images/moon.jpg', flags=1) # flags=1读取为彩色,flags=0读取为灰度
h, w = img.shape[:2]
mat_shift = np.float32([[1, 0, 100], [0, 1, 200]]) # 移位矩阵,相当于沿x轴平移100,沿y轴平移200
dst = cv.warpAffine(img, mat_shift, (h, w))
cv.imshow('img', dst)
cv.waitKey(0)

原理简述

矩阵运算,将[[1, 0, 100], [0, 1, 200]]拆分成两个矩阵A, B

图像矩阵C

opencv 图片位移