使用Homography变换拼接两个图像 - 变换图像裁剪

问题描述 投票:0回答:1

图像拼接无法正常工作。由于图像不相交,因此会裁剪变形图像并无法进行插值。

嗨,我被分配了一个作业,我必须缝合两个图像,用不同的相机拍摄。我应该找到单应矩阵,然后用这个矩阵扭曲第二个图像。最后,我必须插入两个图像。

不幸的是,我写的代码似乎无法正常工作。在第二次图像扭曲期间,我丢失了大部分图像信息;很多像素是黑色的,而不是整个变换后的图像被转换。

我在两个图像中以相同的顺序跟踪每个四个像素。您可以在下面找到我编写的代码。

# Globals
points = []

def show_and_fetch(image, title):
    cv2.namedWindow(title, cv2.WINDOW_NORMAL)
    cv2.setMouseCallback(title, mouse_callback)
    # Show the image
    cv2.imshow(title, image)
    # Wait for user input to continue
    cv2.waitKey(0)
    cv2.destroyAllWindows()


# mouse callback function
def mouse_callback(event,x,y,flags,param):
    if event == cv2.EVENT_LBUTTONDOWN:
        points.append([x, y])


def stitching():
    """
    This procedure stiches two images

    :return:
    """
    print "Stitching starts..."
    ###########################################################################
    # Get input information

    in_file_1 = utils.get_input(
        "Insert 0 to exit, the path to the first image to stitch "
        "or empty input to use default image: ", "string",
        constants.default_stitching1)

    in_file_2 = utils.get_input(
        "Insert 0 to exit, the path to the second image to stitch "
        "or empty input to use default image: ", "string",
        constants.default_stitching2)

    image_1 = utils.read_image(in_file_1)
    image_2 = utils.read_image(in_file_2)

    global points
    show_and_fetch(image_1, "Image 1 to Stitch")
    image_1_points = np.asarray(points, dtype=np.float32)
    points = []
    show_and_fetch(image_2, "Image 2 to Stitch")
    image_2_points = np.asarray(points, dtype=np.float32)

    matrix, mask = cv2.findHomography(image_1_points, image_2_points, cv2.RANSAC, 5)

    image_1_warped = cv2.warpPerspective(image_1, matrix, dsize=image_1.shape[0:2])

    utils.show_image_and_wait(image_1_warped, 'Image 1 warped', wait=False)
    utils.show_image_and_wait(image_1, 'Image 1', wait=False)
    utils.show_image_and_wait(image_2, 'Image 2')


if __name__ == "__main__":
    stitching()

我希望根据像素来转换扭曲的图像,保留大部分信息。然后插值应该应用在特定区域中重叠的两个图像的交点。

例如,我想要对这两个图像进行插值:

This is my expectation and the mandatory steps. It does not work

First Image

enter image description here

python computer-vision cv2 image-stitching opencv-stitching
1个回答
0
投票

我已经设法根据this解决方案缝合图像。这是拼接结果:

enter image description here

这是完整的代码:

import cv2
import imutils
import numpy as np


class Stitcher(object):
    def __init__(self):
        self.isv3 = imutils.is_cv3()

    def stitch(self, images, ratio=0.75, reprojThresh=4.0, showMatches=False):
        (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 not m:
            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.xfeatures2d.SIFT_create()
            kps = detector.detect(gray)

            # extract features from the image
            extractor = cv2.xfeatures2d.SIFT_create()
            (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

image1 = cv2.imread('image1.jpg')
image2 = cv2.imread('image2.jpg')

stitcher = Stitcher()
(result, vis) = stitcher.stitch([image1, image2], showMatches=True)
cv2.imwrite('result.jpg', result)
© www.soinside.com 2019 - 2024. All rights reserved.