Multi-image panorama stitching code modification (2)

foreword

I found a brand new code and tried
the github address

1. Create a virtual environment

conda create -n pinjie python=3.9.0

insert image description here

2. Activate the virtual environment

conda activate pinjie

3. Install the required packages

View the original author's instructions on github
insert image description here

3.1 opencv installation

  1. Query the installed versionpip install opencv-python==
    insert image description here

  2. Installing the corresponding version pip install opencv-python==4.5.5.64
    insert image description here
    will automatically install numpy

3.2 matplotlib installation

pip install matplotlib==3.4.3

3.3 tqdm installation


pip install tqdm==4.62.3

3.4 Installation Results

insert image description here

4. The running results of the example given by the original author

insert image description here
insert image description here
insert image description here

5. Two examples of parallel pictures

insert image description here
insert image description here

Guess you like

Origin blog.csdn.net/m0_47146037/article/details/126960931