A package to convert video sequences into panoramic images
Project description
video2panorama
video2panorama is a Python-based tool designed to transform video sequences into panoramic images. It automates the stitching process by analyzing frames from input video files and producing panoramic outputs.
How to install
1. install with pip
For users who want to install the package directly from PyPI:
pip install video2panorama
2. Cloning the repo and installing locally
For those who prefer to work with the latest code or contribute to the project, you can clone the GitHub repository and install it locally.
Clone the repo:
git clone https://github.com/RaduBolbo/video_to_panorama.git
Navigate into the cloned directory:
cd video_to_panorama
Create a conda environemnt:
conda create --name v2p python==3.10
Activate the conda environemnt:
conda activate v2p
Install the package:
pip install .
How to use
2. Using the terminal
Run the following command in the terimanl:
video2panorama --input_path path/to/your/video.mp4 --output_path path/to/the/output/panoramic_image.png
Additionally, if you wantto try other hyperparameters, you can include them in a .json file whos path you can send to the comman:
video2panorama --input_path path/to/your/video.mp4 --output_path path/to/the/output/panoramic_image.png --hyperparameters_path path/to/your/config/file.json
The config file should have the following format:
{
"feature_extraction_algo" : "sift",
"ratio" : 0.75,
"reprojectionThresh" : 2,
"adaptive_shift_pixels" : 2,
"non_dominant_direction_pixels_freedom_degree" : 0
}
The hyperparameters are explained in ****
2. Using the Python Api
from video2panorama.panorama import Video2Panorama
tts = Video2Panorama()
tts.convert('path/to/your/video.mp', 'path/to/the/output/panoramic_image.png')
If you want to overwrite the default parameters you can specify them in the constructor:
tts = Video2Panorama(feature_extraction_algo="sift",
ratio=0.75,
reprojectionThresh=2,
adaptive_shift_pixels=2,
non_dominant_direction_pixels_freedom_degree=0
)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file video2panorama-1.0.3.tar.gz.
File metadata
- Download URL: video2panorama-1.0.3.tar.gz
- Upload date:
- Size: 13.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
574231db273dc084ea4b8de05f0feb769c76fcdb8bc399f55085100867f69d8f
|
|
| MD5 |
dacf3cb2869eceabc6f26968e5a4d28f
|
|
| BLAKE2b-256 |
a9ed96c7ac2661d06aaaca4a548001fa652f8284939ff68527e818f4c65fbe0f
|
File details
Details for the file video2panorama-1.0.3-py3-none-any.whl.
File metadata
- Download URL: video2panorama-1.0.3-py3-none-any.whl
- Upload date:
- Size: 14.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf9f11b49331a5529acac915e927b979cc6532f48fd4d85f62312a9c95f69cd0
|
|
| MD5 |
4675035d868e2511696d7388c8ffa8d1
|
|
| BLAKE2b-256 |
2553af4f927536b6ebb700a684b3e76e21df60916497729d102f9469f6cd7867
|