python实现图像拼接

作者:qiao_lili 时间:2023-07-26 15:38:27 

本文实例为大家分享了python实现图像拼接的具体代码,供大家参考,具体内容如下

1.待拼接的图像

python实现图像拼接

python实现图像拼接

2. 基于SIFT特征点和RANSAC方法得到的图像特征点匹配结果

python实现图像拼接

3.图像变换结果

python实现图像拼接

4.代码及注意事项


import cv2
import numpy as np

def cv_show(name, image):
cv2.imshow(name, image)
cv2.waitKey(0)
cv2.destroyAllWindows()

def detectAndCompute(image):
image = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
sift = cv2.xfeatures2d.SIFT_create()
(kps, features) = sift.detectAndCompute(image, None)
kps = np.float32([kp.pt for kp in kps]) # 得到的点需要进一步转换才能使用
return (kps, features)

def matchKeyPoints(kpsA, kpsB, featuresA, featuresB, ratio = 0.75, reprojThresh = 4.0):
# ratio是最近邻匹配的推荐阈值
# reprojThresh是随机取样一致性的推荐阈值
matcher = cv2.BFMatcher()
rawMatches = matcher.knnMatch(featuresA, featuresB, 2)
matches = []
for m in rawMatches:
 if len(m) == 2 and m[0].distance < ratio * m[1].distance:
  matches.append((m[0].queryIdx, m[0].trainIdx))
kpsA = np.float32([kpsA[m[0]] for m in matches]) # 使用np.float32转化列表
kpsB = np.float32([kpsB[m[1]] for m in matches])
(M, status) = cv2.findHomography(kpsA, kpsB, cv2.RANSAC, reprojThresh)
return (M, matches, status) # 并不是所有的点都有匹配解,它们的状态存在status中

def stich(imgA, imgB, M):
result = cv2.warpPerspective(imgA, M, (imgA.shape[1] + imgB.shape[1], imgA.shape[0]))
result[0:imageA.shape[0], 0:imageB.shape[1]] = imageB
cv_show('result', result)

def drawMatches(imgA, imgB, kpsA, kpsB, matches, status):
(hA, wA) = imgA.shape[0:2]
(hB, wB) = imgB.shape[0:2]
# 注意这里的3通道和uint8类型
drawImg = np.zeros((max(hA, hB), wA + wB, 3), 'uint8')
drawImg[0:hB, 0:wB] = imageB
drawImg[0:hA, wB:] = imageA
for ((queryIdx, trainIdx),s) in zip(matches, status):
 if s == 1:
  # 注意将float32 --> int
  pt1 = (int(kpsB[trainIdx][0]), int(kpsB[trainIdx][1]))
  pt2 = (int(kpsA[trainIdx][0]) + wB, int(kpsA[trainIdx][1]))
  cv2.line(drawImg, pt1, pt2, (0, 0, 255))
cv_show("drawImg", drawImg)

# 读取图像
imageA = cv2.imread('./right_01.png')
cv_show("imageA", imageA)
imageB = cv2.imread('./left_01.png')
cv_show("imageB", imageB)
# 计算SIFT特征点和特征向量
(kpsA, featuresA) = detectAndCompute(imageA)
(kpsB, featuresB) = detectAndCompute(imageB)
# 基于最近邻和随机取样一致性得到一个单应性矩阵
(M, matches, status) = matchKeyPoints(kpsA, kpsB, featuresA, featuresB)
# 绘制匹配结果
drawMatches(imageA, imageB, kpsA, kpsB, matches, status)
# 拼接
stich(imageA, imageB, M)

来源:https://blog.csdn.net/qiao_lili/article/details/89736237

标签:python,图像拼接
0
投稿

猜你喜欢

  • IE下绝对定位的元素不能响应鼠标的bug修正

    2008-09-10 13:03:00
  • python中几种自动微分库解析

    2022-12-20 18:24:02
  • pandas DataFrame 交集并集补集的实现

    2023-05-02 12:03:27
  • golang中defer的使用规则详解

    2023-07-21 22:47:31
  • Vue的el-scrollbar实现自定义滚动

    2021-08-16 19:06:22
  • Python fire模块(最简化命令行生成工具)的使用教程详解

    2022-06-10 15:25:00
  • Asp实现伪静态的方法

    2007-09-29 21:27:00
  • 使用beaker让Facebook的Bottle框架支持session功能

    2023-07-01 02:35:35
  • python使用opencv按一定间隔截取视频帧

    2021-10-29 01:27:14
  • 【启发】不用循环计算1到100的和

    2009-03-04 12:16:00
  • 详解Vue项目中出现Loading chunk {n} failed问题的解决方法

    2024-04-30 10:16:03
  • Python处理键映射值操作详解

    2021-03-21 03:14:53
  • SQL基础查询和LINQ集成化查询

    2024-01-18 21:51:47
  • 对Python 除法负数取商的取整方式详解

    2023-10-02 20:21:41
  • python 常见的反爬虫策略

    2022-12-17 21:51:54
  • Python实现TCP通信的示例代码

    2022-10-03 15:49:17
  • 使用mss2sql工具将SqlServer转换为Mysql全记录

    2024-01-24 11:59:37
  • Oracle性能究极优化 下

    2010-07-30 13:25:00
  • 详解OpenCV中简单的鼠标事件处理

    2023-01-04 12:16:01
  • Python初识逻辑与if语句及用法大全

    2023-11-21 16:17:24
  • asp之家 网络编程 m.aspxhome.com