多图像全景拼接代码修改(二)

前言

找了个全新的代码,进行尝试
github地址

1、创建虚拟环境

conda create -n pinjie python=3.9.0

在这里插入图片描述

2、激活虚拟环境

conda activate pinjie

3、安装对应需要的包

查看github原作者说明
在这里插入图片描述

3.1 opencv安装

  1. 查询安装版本pip install opencv-python==
    在这里插入图片描述

  2. 安装对应版本pip install opencv-python==4.5.5.64
    在这里插入图片描述
    会自动安装numpy

3.2 matplotlib安装

pip install matplotlib==3.4.3

3.3 tqdm安装


pip install tqdm==4.62.3

3.4 安装结果

在这里插入图片描述

4、原作者所给例子运行结果

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

5、平行图片的两个例子

在这里插入图片描述
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/m0_47146037/article/details/126960931