python+OpenCV实现图像拼接
作者:MoonJian 时间:2023-01-28 08:09:26
本文实例为大家分享了利用python和OpenCV实现图像拼接,供大家参考,具体内容如下
python+OpenCV实现image stitching
在最新的OpenCV官方文档中可以找到C++版本的Stitcher类的说明, 但是python版本的还没有及时更新, 本篇对python版本的实现做一个简单的介绍.
由于官方文档中还没有python版本的Stitcher类的说明, 因此只能自己去GitHub源码上找, 以下是stitching的样例:
from __future__ import print_function
import cv2 as cv
import numpy as np
import argparse
import sys
modes = (cv.Stitcher_PANORAMA, cv.Stitcher_SCANS)
parser = argparse.ArgumentParser(description='Stitching sample.')
parser.add_argument('--mode',
type = int, choices = modes, default = cv.Stitcher_PANORAMA,
help = 'Determines configuration of stitcher. The default is `PANORAMA` (%d), '
'mode suitable for creating photo panoramas. Option `SCANS` (%d) is suitable '
'for stitching materials under affine transformation, such as scans.' % modes)
parser.add_argument('--output', default = 'result.jpg',
help = 'Resulting image. The default is `result.jpg`.')
parser.add_argument('img', nargs='+', help = 'input images')
args = parser.parse_args()
# read input images
imgs = []
for img_name in args.img:
img = cv.imread(img_name)
if img is None:
print("can't read image " + img_name)
sys.exit(-1)
imgs.append(img)
stitcher = cv.Stitcher.create(args.mode)
status, pano = stitcher.stitch(imgs)
if status != cv.Stitcher_OK:
print("Can't stitch images, error code = %d" % status)
sys.exit(-1)
cv.imwrite(args.output, pano);
print("stitching completed successfully. %s saved!" % args.output)
上面写了一大堆, 然鹅, 直接拿来用的话, 用下面的代码可以了, 简单粗暴
import numpy as np
import cv2
from cv2 import Stitcher
if __name__ == "__main__":
img1 = cv2.imread('1.jpg')
img2 = cv2.imread('2.jpg')
stitcher = cv2.createStitcher(False)
#stitcher = cv2.Stitcher.create(cv2.Stitcher_PANORAMA), 根据不同的OpenCV版本来调用
(_result, pano) = stitcher.stitch((img1, img2))
cv2.imshow('pano',pano)
cv2.waitKey(0)
效果如下:
原图:
拼接后的图像:
来源:https://blog.csdn.net/MoonJian/article/details/85039598
标签:python,opencv,图像拼接
0
投稿
猜你喜欢
Mysql中使用时间查询的详细图文教程
2024-01-17 16:35:54
TorchVision Transforms API目标检测实例语义分割视频类
2022-12-05 14:24:56
基于python实现百度翻译功能
2023-09-06 15:14:18
使用Python实现企业微信通知功能案例分析
2022-12-26 05:03:48
python实现批量提取指定文件夹下同类型文件
2023-11-17 17:13:31
JavaScript字典与集合详解
2024-04-16 09:28:13
Python缓存技术实现过程详解
2023-08-03 12:31:30
详解scrapy内置中间件的顺序
2023-10-22 07:13:38
Python面向对象特殊成员
2021-07-03 12:05:48
Python selenium模块实现定位过程解析
2021-01-10 10:50:27
php日期转时间戳,指定日期转换成时间戳
2023-06-20 17:02:23
记录无法安装mysql-Invalid GPG Key from file:/etc/pki/rpm-gpg/RPM-GPG-KEY-mysql的解决办法
2024-01-13 00:24:22
教你如何使用firebug调试功能了解javascript闭包和this
2024-04-22 13:09:34
Django2.1集成xadmin管理后台所遇到的错误集锦(填坑)
2022-04-01 02:43:55
Golang 中的json.Marshal问题总结(推荐)
2024-02-16 04:20:22
pygame学习笔记(5):游戏精灵
2021-10-13 18:29:56
概述javascript在Google IE中的调试技巧
2023-08-08 11:50:29
MySQL动态SQL拼接实例详解
2024-01-20 15:13:55
Django 自定义404 500等错误页面的实现
2022-06-10 17:31:40
Python中return函数返回值实例用法
2023-11-19 02:11:36