图片偏移

实现图片偏移代码如下:

import cv2
import numpy as np
img = cv2.imread('image1.jpg',1)
cv2.imshow('src',img)
imgInfo = img.shape
height = imgInfo[0]
width = imgInfo[1]
###
matShift = np.float32([[1,0,100],[0,1,200]])#创建一个2*3的矩阵
dst = cv2.warpAffine(img,matShift,(height,width))#原图片 偏移矩阵  图片信息
cv2.imshow('dst',dst)
cv2.waitKey(0)

实现后的效果如下:
图片偏移_第1张图片
在X轴偏移100,在Y轴偏移200

你可能感兴趣的:(图形识别,opencv)