最全的图像拼接代码

本文详细介绍了如何使用Python和OpenCV进行图像拼接,包括基于OpenCV的panorama stitching步骤、利用cv2.createStitcher()和cv2.Stitcher_create()的方法,以及实时全景图像构建。内容涵盖了不同代码示例、论文参考和GitHub资源。
摘要由CSDN通过智能技术生成

我总结图像处理网站pyimagesearch上的图像拼接代码,并附有详细的解释。

pyimagesearch网站链接

1. OpenCV panorama stitching,2016年1月11日

链接1

GitHub中一样的代码: samggggflynn/panorama-stitchingkaranvivekbhargava/PanoramaStichingSIFT-master

链接2
链接3

内容:

​ 使用Python和OpenCV进行图像拼接和全景图构建。给定两张图片,将它们“缝合”在一起形成一个简单的全景图。

​ 介绍了全景图像拼接的4个步骤:

​ 步骤1:从两个输入图像中检测关键点(DoG, Harris等)和提取局部不变描述符(SIFT, SURF等)。

​ 步骤2:匹配两个图像之间的描述符。

​ 步骤3:使用RANSAC算法估计我们匹配的特征向量的单应矩阵。

​ 步骤4:使用从步骤3得到的单应矩阵应用翘曲变换。

代码:在panorama.py中封装上述四个步骤,并且定义了一个用于构造全景图的Stitcher类。在stitch.py中,我们调用panorama.py中的Stitcher类,完成拼接。

panorama.py

# import the neccessary packages
import numpy as np
import imutils
import cv2


class Stitcher:
    def __init__(self):
        # define if we are using OpenCV v3.x
        self.isv3 = imutils.is_cv3(or_better=True)

    def stitch(self, images, ratio=0.75, reprojThresh=4.0, showMatches=False):
        # unpack the images, then detect keypoints and extract
        # local invariant descriptors from them
        (imageB, imageA) = images
        (kpsA, featuresA) = self.detectAndDescribe(imageA)
        (kpsB, featuresB) = self.detectAndDescribe(imageB)

        # match features between the two images
        M = self.matchKeypoints(kpsA, kpsB,
                                featuresA, featuresB, ratio, reprojThresh)

        # if the match is None, then there aren't enough matched
        # keypoints to create a panorama
        if M is None:
            return None

        # otherwise, apply a perspective warp to stitch the images
        # together
        (matches, H, status) = M
        result = cv2.warpPerspective(imageA, H,
                                     (imageA.shape[1] + imageB.shape[1], imageA.shape[0]))
        result[0:imageB.shape[0], 0:imageB.shape[1]] = imageB

        # check to see if the keypoint matches should be visualized
        if showMatches:
            vis = self.drawMatches(imageA, imageB, kpsA, kpsB, matches,
                                   status)

            # return a tuple of the stitched image and the
            # visualization
            return (result, vis)

        # return the stitched image
        return result

    def detectAndDescribe(self, image):
        # convert the image to grayscale
        gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)

        # check to see if we are using OpenCV 3.X
        if self.isv3:
            # detect and extract features from the image
            descriptor = cv2.xfeatures2d.SIFT_create()
            (kps, features) = descriptor.detectAndCompute(image, None)

        # otherwise, we are using OpenCV 2.4.X
        else:
            # detect keypoints in the image
            detector = cv2.FeatureDetector_create("SIFT")
            kps = detector.detect(gray)

            # extract features from the image
            extractor = cv2.DescriptorExtractor_create("SIFT")
            (kps, features) = extractor.compute(gray, kps)

        # convert the keypoints from KeyPoint objects to NumPy
        # arrays
        kps = np.float32([kp.pt for kp in kps])

        # return a tuple of keypoints and features
        return (kps, features)

    def matchKeypoints(self, kpsA, kpsB, featuresA, featuresB,
                       ratio, reprojThresh):
        # compute the raw matches and initialize the list of actual
        # matches
        matcher = cv2.DescriptorMatcher_create("BruteForce")
        rawMatches = matcher.knnMatch(featuresA, featuresB, 2)
        matches = []

        # loop over the raw matches
        for m in rawMatches:
            # ensure the distance is within a certain ratio of each
            # other (i.e. Lowe's ratio test)
            if len(m) == 2 and m[0].distance < m[1].distance * ratio:
                matches.append((m[0].trainIdx, m[0].queryIdx))

        # computing a homography requires at least 4 matches
        if len(matches) > 4:
            # construct the two sets of points
            ptsA = np.float32([kpsA[i] for (_, i) in matches])
            ptsB = np.float32([kpsB[i] for (i, _) in matches])

            # compute the homography between the two sets of points
            (H, status) = cv2.findHomography(ptsA, ptsB, cv2.RANSAC,
                                             reprojThresh)

            # return the matches along with the homograpy matrix
            # and status of each matched point
            return (matches, H, status)

        # otherwise, no homograpy could be computed
        return None

    def drawMatches(self, imageA, imageB, kpsA, kpsB, matches, status):
        # initialize the output visualization image
        (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

        # loop over the matches
        for ((trainIdx, queryIdx), s) in zip(matches, status):
            # only process the match if the keypoint was successfully
            # matched
            if s == 1:
                # draw the match
                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 the visualization
        return vis

stitch.py

# run code use : python stitch.py --first images/img9.jpg --second iamges/img10.jpg
# import the necessary packages
from panorama import Stitcher
import argparse
import imutils
import cv2

# construct the argument parse and parse the arguments
ap = argparse.ArgumentParser()
ap.add_argument("-f", "--first", required=True, help="path to the first image")
ap.add_argument("-s", "--second", required=True, help="path to the second image")
args = vars(ap.parse_args())

# load the two images and resize them to have a width of 400 pixels
# (for faster processing)
imageA = cv2.imread(args["first"])
imageB = cv2.imread(args["second"])
imageA = imutils.resize(imageA, width=400)
imageB = imutils.resize(imageB, width=400)

# stitch the images together to create a panorama
stitcher = Stitcher()
(result, vis) = stitcher.stitch([imageA, imageB], showMatches=True)

# to write the images
cv2.imwrite("Matched_points_mural.jpg", vis)
cv2.imwrite("Panorama_image_mural.jpg", result)

cv2.waitKey(0)
cv2.destroyAllWindows()

# show the images
cv2.imshow("Image A", imageA)
cv2.imshow("Image B", imageB)
cv2.imshow("Keypoint Matches", vis)
cv2.imshow("Result", result)
cv2.waitKey(0)

运行代码:

python stitch.py --first images/bryce_left_01.png –second images/bryce_right_01.png

2. Image Stitcing with OpenCV and Python, 2018年12月17日==*==

网址:https://www.pyimagesearch.com/2018/12/17/image-stitching-with-opencv-and-python/

​ 中文翻译版:https://blog.csdn.net/learning_tortosie/article/details/85083825?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522162683446416780255241191%2522%252C%2522scm%2522%253A%252220140713.130102334.pc%255Fall.%2522%257D&request_id=162683446416780255241191&biz_id=0&utm_medium=distribute.pc_search_result.none-task-blog-2allfirst_rank_v2~rank_v29-4-85083825.first_rank_v2_pc_rank_v29&utm_term=cv2.createStitcher%28%29+%E5%92%8C+cv2.Stitcher_create%28%29+&spm=1018.2226.3001.4187

内容:

​ 学习如何使用Python、OpenCV和cv2.createStitcher以及 cv2.Stitcher_create来执行图像拼接。使用这个代码,可以将多个图像拼接在一起,创建一个拼接图像的全景。

图像拼接算法步骤图:https://www.pyimagesearch.com/wp-content/uploads/2018/12/image_stitching_opencv_pipeline.png

代码参考论文:Automatic Panorama Image Stitching with Invariant Features,论文地址:http://matthewalunbrown.com/papers/ijcv2007.pdf

​在GitHub上实现这篇论文的代码如下:avinashk442/Panoramic-Image-Stitching-using-invariant-features

​网址:https://github.com/avinashk442/Panoramic-Image-Stitching-using-invariant-features

论文介绍:

​ 不同于以往的图像拼接算法对输入图像的顺序敏感,Automatic Panorama Image Stitching with Invariant Features方法鲁棒性更强,对以下情况不敏感:

​ · 图片的顺序

​ · 方向的图片

​ · 光照变化

​ · 噪声图像不是全景图的一部分

代码:

image_stitching_simple.py

# run code
# python image_stitching_simple.py --images images/scottsdale --output output.png
# import the necessary packages
from imutils import paths
import numpy as np
import argparse
import imutils
import cv2

# construct the argument parser and parse the arguments
ap = argparse.ArgumentParser()
ap.add_argument("-i", "--images", type=str, required=True,
                help="path to input directory of images to stitch")
ap.add_argument("-o", "--output", type=str, required=True,
                help="path to the output image")
args = vars(ap.parse_args())

# grab the paths to the input images and initialize our images list
print("[INFO] loading images...")
imagePaths = 
  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
### 回答1: Matlab是一种功能强大的数学软件,也可用于图像处理图像拼接。下面是一个示例代码,展示如何使用Matlab拼接图像: ```matlab % 图像拼接代码示例 % 1. 读取要拼接的图像 image1 = imread('image1.jpg'); % 假设要拼接的第一幅图像为image1.jpg image2 = imread('image2.jpg'); % 假设要拼接的第二幅图像为image2.jpg % 2. 选择拼接方法(水平拼接或垂直拼接) method = input('选择拼接方法(水平拼接请输入1,垂直拼接请输入2):'); % 用户输入拼接方法 % 3. 拼接图像 if method == 1 % 水平拼接 stitchedImage = [image1, image2]; % 拼接图像 else % 垂直拼接 stitchedImage = [image1; image2]; % 拼接图像 end % 4. 显示拼接结果 imshow(stitchedImage); % 显示拼接后的图像 title('拼接后的图像'); % 5. 保存拼接结果 imwrite(stitchedImage, 'stitched_image.jpg'); % 将拼接后的图像保存为stitched_image.jpg ``` 使用上述代码,首先需要将要拼接的图像以'image1.jpg'和'image2.jpg'的文件名存储在当前工作目录中,然后运行代码即可。该示例代码中提供了选择水平拼接或垂直拼接的选项,并根据用户的选择进行图像拼接。拼接后的图像会在Matlab的图像窗口中显示,并保存为'stitched_image.jpg'文件。 当然,这只是一个简单的示例代码,实际应用中可能需要更复杂的拼接算法或图像预处理步骤。但希望这个示例能够帮助理解Matlab图像拼接的基本原理和方法。 ### 回答2: MATLAB是一个强大的图像处理工具,可以实现图像拼接功能。下面是一个基本的MATLAB图像拼接代码: ```matlab % 加载需要拼接的图片 image1 = imread('image1.jpg'); image2 = imread('image2.jpg'); % 确定拼接后图片的大小 width = size(image1, 2) + size(image2, 2); height = max(size(image1, 1), size(image2, 1)); % 创建一个全黑的画布,大小为拼接后的图片大小 result = zeros(height, width, 3, 'uint8'); % 将第一张图片放在画布的左边 result(1:size(image1, 1), 1:size(image1, 2), :) = image1; % 计算第二张图片在画布上的位置 startX = size(image1, 2) + 1; endX = startX + size(image2, 2) - 1; startY = max(1, size(image1, 1) - size(image2, 1)) + 1; endY = height; % 将第二张图片放在画布上的计算位置上 result(startY:endY, startX:endX, :) = image2; % 显示拼接后的结果 imshow(result); ``` 以上代码首先加载需要拼接的两张图片`image1.jpg`和`image2.jpg`,然后确定拼接后图片的大小。创建一个全黑的画布,大小为拼接后的图片大小。将第一张图片放在画布的左边,然后计算第二张图片在画布上的位置,并将第二张图片放在画布对应的位置上。最后,使用`imshow`函数显示拼接后的结果。通过调整`startX`、`endX`、`startY`和`endY`等参数,可以实现不同的拼接效果。 ### 回答3: MATLAB 图像拼接是一种将多个图像组合成一个大图像的技术。下面是一个基本的 MATLAB 图像拼接代码: 1. 首先,导入需要拼接的图像。使用 `imread` 函数来读取图像文件,如: ```matlab image1 = imread('image1.jpg'); image2 = imread('image2.jpg'); ``` 2. 使用 `size` 函数获取图像的尺寸信息,以便确定拼接后图像的大小。比如: ```matlab [h1, w1, ~] = size(image1); [h2, w2, ~] = size(image2); ``` 3. 创建一个新图像矩阵,大小为两个图像宽度之和和两个图像高度的最大值。如下所示: ```matlab newImage = uint8(zeros(max(h1, h2), w1 + w2, 3)); ``` 4. 将第一个图像复制到新图像中的左侧。例如: ```matlab newImage(1:h1, 1:w1, :) = image1; ``` 5. 将第二个图像复制到新图像中的右侧。例如: ```matlab newImage(1:h2, (w1+1):(w1+w2), :) = image2; ``` 6. 可选步骤:使用 `imshow` 函数显示拼接后的图像,并保存结果。如下所示: ```matlab imshow(newImage); imwrite(newImage, 'result.jpg'); ``` 这个简单的 MATLAB 图像拼接代码可以拼接两个图像,并将结果保存为名为 "result.jpg" 的文件。根据实际需求,还可以对代码进行进一步修改和扩展,以实现更复杂的图像拼接任务。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值