opencv 项目--图像匹配

news/2024/12/23 23:56:21 标签: opencv, 计算机视觉, 人工智能

本文按照如下设计

ImageStitching_ExcessThree.py

from Stitcher import Stitcher
import cv2
import my_utils
# 只拼接两张图片

# 读取需要拼接的图片
# imageA_original = cv2.imread("left_01.png")
# imageB_original = cv2.imread("right_01.png")
imageA_original = cv2.imread("left_01.jpg")
imageB_original = cv2.imread("right_01.jpg")
imageC_original = cv2.imread("right_02.jpg")

# 图像预处理-改变图像大小
imageA = my_utils.resize(imageA_original,width=500)
imageB = my_utils.resize(imageB_original,width=500)
imageC = my_utils.resize(imageC_original,width=500)

# 把图片拼接成全景图
stitcher = Stitcher()
(result, vis) = stitcher.stitch([imageA, imageB], showMatches=True)
(result, vis) = stitcher.stitch([result, imageC], showMatches=True)

# 显示所有图片
stitcher.cv_show("Image A", imageA)
stitcher.cv_show("Image B", imageB)
stitcher.cv_show("Image C", imageC)
stitcher.cv_show("Keypoint Matches", vis)
stitcher.cv_show("Result", result)

ImageStitching_JustTwo.py

from Stitcher import Stitcher
import cv2
import my_utils
# 只拼接两张图片

# 读取需要拼接的图片
# imageA_original = cv2.imread("left_01.png")
# imageB_original = cv2.imread("right_01.png")
imageA_original = cv2.imread("left_01.jpg")
imageB_original = cv2.imread("right_01.jpg")

# 图像预处理-改变图像大小
imageA = my_utils.resize(imageA_original,width=500)
imageB = my_utils.resize(imageB_original,width=500)


# 把图片拼接成全景图
stitcher = Stitcher()
(result, vis) = stitcher.stitch([imageA, imageB], showMatches=True)
print(vis)
# 显示所有图片
stitcher.cv_show("Image A", imageA)
stitcher.cv_show("Image B", imageB)
stitcher.cv_show("Keypoint Matches", vis)
stitcher.cv_show("Result", result)


my_utils.py

import cv2

def resize(image, width=None, height=None, inter=cv2.INTER_AREA):
    dim = None
    (h, w) = image.shape[:2]
    if width is None and height is None:
        return image
    if width is None:
        r = height / float(h)
        dim = (int(w * r), height)
        print('width is None', dim)

    else:
        r = width / float(w)
        dim = (width, int(h * r))
        print('height is None', dim)
    resized = cv2.resize(image, dim, interpolation=inter)
    return resized

Stitcher.py

import numpy as np
import cv2


class Stitcher:

    # 拼接函数
    def stitch(self, images, ratio=0.75, reprojThresh=4.0, showMatches=False):
        # 获取图片
        (imageB, imageA) = images

        # 检测A,B图片的SIFT关键特征点,并且计算其特征描述子(特征向量)
        (kpsA, featureA) = self.detectAndDescribe(imageA)
        (kpsB, featureB) = self.detectAndDescribe(imageB)

        # 匹配两张图片的所有特征点,返回匹配结果
        M = self.matchKeypoints(kpsA, kpsB, featureA, featureB, ratio, reprojThresh)
        # 如果返回结果为空,没有匹配成功的特征点,退出算法
        if M is None:
            return None

        # 否则,提取匹配结果
        # H是3x3视角变换矩阵
        (matches, H, status) = M
        # 将图片A进行视角变换,result是变换后图片
        result = cv2.warpPerspective(imageA, H, (imageA.shape[1] + imageB.shape[1], imageA.shape[0]))
        # self.cv_show('result', result)
        # 将图片B传入result图片最左端
        result[0:imageB.shape[0], 0:imageB.shape[1]] = imageB
        # self.cv_show('result', result)

        # 检测是否需要显示图片匹配
        if showMatches:
            # 生成匹配图片
            vis = self.drawMatches(imageA, imageB, kpsA, kpsB, matches, status)
            # 返回结果
            return (result, vis)

        # 返回匹配结果
        return result

    # 获取图片关键点和特征描述子
    def detectAndDescribe(self, img):
        # 转灰度图
        gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)

        # 建立SIFT实例对象
        descriptor = cv2.xfeatures2d.SIFT_create()
        # 检测SIFT特征点并且计算描述子
        (kps, feature) = descriptor.detectAndCompute(img, None)

        # 并且将结果转换为Numpy数组
        kps = np.float32([kp.pt for kp in kps])

        # 返回特征点集合描述子
        return (kps, feature)

    # 匹配两张图片的特征点
    def matchKeypoints(self, kpsA, kpsB, featureA, featureB, ratio, reprojThresh):
        # 使用BF匹配
        matcher = cv2.BFMatcher()

        # 使用KNN来对A,B图的SIFT特征进行匹配
        rawMatches = matcher.knnMatch(featureA, featureB, k=2)

        # 获得较好的相匹配的特征(筛选特征点)
        matches = []
        for m in rawMatches:
            # 当最近距离跟次近距离的比值小于ratio值时,保留此匹配对
            if len(m) == 2 and m[0].distance < m[1].distance * ratio:
                # 存储两个点在featuresA, featuresB中的索引值
                # DMatch.trainIdx - Index of the descriptor in train descriptors
                # DMatch.queryIdx - Index of the descriptor in query descriptors
                matches.append((m[0].trainIdx, m[0].queryIdx))

        # 当筛选后的匹配对大于4时,计算视角变换矩阵
        if len(matches) > 4:
            # 获取匹配对的点的坐标
            ptsA = np.float32([kpsA[i] for (_, i) in matches])
            ptsB = np.float32([kpsB[i] for (i, _) in matches])

            # 计算视角变换矩阵
            (H, status) = cv2.findHomography(ptsA, ptsB, cv2.RANSAC, reprojThresh)

            # 返回匹配结果和单应性矩阵和status
            return (matches, H, status)

        # 如果匹配对小于4时,返回None
        return None

    # 展示图片
    def cv_show(self, name, img):
        cv2.imshow(name, img)
        cv2.waitKey(0)
        cv2.destroyAllWindows()

    def drawMatches(self, imageA, imageB, kpsA, kpsB, matches, status):
        # 初始化可视化图片,将A、B图左右连接到一起
        print("Start draw Matching...")
        (hA, wA) = imageA.shape[:2]
        (hB, wB) = imageB.shape[:2]
        vis = np.zeros((max(hA, hB), wA + wB, 3), dtype="uint8")
        vis[0:hA, 0:wA] = imageA
        vis[0:hB, wA:] = imageB

        # 联合遍历,画出匹配对
        for ((trainIdx, queryIdx), s) in zip(matches, status):
            # 当点对匹配成功时,画到可视化图上
            if s == 1:
                # 画出匹配对
                ptA = (int(kpsA[queryIdx][0]), int(kpsA[queryIdx][1]))
                ptB = (int(kpsB[trainIdx][0]) + wA, int(kpsB[trainIdx][1]))
                cv2.line(vis, ptA, ptB, (0, 255, 0), 1)

        # 返回可视化结果
        return vis


http://www.niftyadmin.cn/n/5797129.html

相关文章

深入浅出:多功能 Copilot 智能助手如何借助 LLM 实现精准意图识别

阅读原文 1. Copilot中的意图识别 如果要搭建一个 Copilot 智能助手&#xff0c;比如支持 知识问答、数据分析、智能托管、AIGC 等众多场景或能力&#xff0c;那么最核心的就是基于LLM进行意图识别分发能力&#xff0c;意图识别的准确率直接决定了 Copilot 智能助手的能力上限…

速通Python 第三节

一、顺序语句 默认情况下 , Python 的代码执行顺序是按照从上到下的顺序 , 依次执行 print("1") print("2") print("3") 执行结果一定为 "123", 而不会出现 "321" 或者 "132" 等 . 这种按照顺序执行的代码…

情报信息收集能力

红队专题-Web渗透之资产思路框架知识整理 钓鱼社工 钓鱼自动化zip域名ARP欺骗快捷方式ToolsburpsuiteApp 抓包ffuf模糊测试QingScanWiresharkCloudCFEn-Decodeffffffff0xInfodirbdirmapdirsearchdnsenum使用测试常规使用使用字典文件进行dns查询子域名暴力查询部分C类IP地址IP块…

Docker核心技术和实现原理

目录 1. Docker镜像原理介绍1.1 操作系统基础1.2 Union FS(联合文件系统)1.3 再看 Docker 镜像是什么 2. 镜像的实现原理2.1 Docker 分层存储实现原理2.2 docker 镜像加载原理 3. 镜像分层存储实战3.1 基础知识3.2 实战过程 4. overlay 文件系统工作实战5. Docker卷原理介绍5.1…

图解HTTP-HTTP协议

HTTP HTTP是一种不保存状态&#xff0c;即无状态的协议。HTTP协议自身不对请求和响应之间的通信进行保存。为了保存状态因此后面也有一些技术产生比如Cookies技术。 HTTP是通过URI定位网上的资源&#xff0c;理论上将URI可以访问互联网上的任意资源。 如果不是访问特定的资源…

前端开发问题记录

1. vue3生产包部署在第三方平台的iframe&#xff0c;页面空白&#xff0c;部分资源无法加载 因为vue3采取的是按需加载的一个策略&#xff0c;因为有些第三方平台不支持这种模式&#xff0c;特别第三方是通过iframe去加载vue3的生产包&#xff0c;很容易出现页面空白&#xff…

生产制造管理系统:现代制造业的智能引擎

在当今快速变化的商业环境中&#xff0c;企业要想保持竞争力&#xff0c;就必须不断优化生产流程&#xff0c;提高生产效率&#xff0c;降低成本&#xff0c;并确保产品质量。这正是生产制造管理系统&#xff08;Manufacturing Execution System&#xff0c;简称MES&#xff09…

python常用内建模块:collections

collections 是 Python 标准库中的一个模块&#xff0c;它提供了许多有用的容器数据类型&#xff0c;这些类型是对内置类型的扩展或补充。以下是 collections 模块中一些常用的类和它们的基本用法&#xff1a; 导入模块 首先&#xff0c;你需要导入 collections 模块&#xf…