Welcome to the Stabilization Tool, an advanced application designed to stabilize videos and generate detailed reports on the parameters used in the stabilization process. This tool don't allows you to improve video quality, but it reduce unwanted shifts. Also provides the ability to document the parameters used for complete post-process analysis.
The application offers two main functionalities:
-
Video Stabilization: Uses advanced algorithms to correct camera movements, making videos more stable and professional. Users can choose between different types of stabilisation (local, global and perspective) depending on their specific needs.
-
Report Generation: After stabilisation, the application can generate a report in HTML format detailing the parameters used, such as stabilisation type, coordinates and dimensions of the region of interest (ROI), and other technical parameters.
This project was developed by Giuseppe Tomarchio as part of an academic activity for the University of Catania.
- Python 3.11.1
- Tkinter (GUI engine)
- OpenCV (for the underlying logic of video stabilization algorithms)
- Numpy (core library for numerical computing in Python)
- Pillow (image processing library that extends the capabilities of the Python Imaging Library (PIL))
- cpuinfo (to obtain CPU information)
To start using the project, follow these steps:
-
Create a virtual environment: It is advisable to use a virtual environment to manage project dependencies. You can create a virtual environment as follows:
python -m venv venv
-
Activate the virtual environment:
# windows venv\Scripts\activate # macOS and Linux source venv/bin/activate
-
Install the requirements Once the virtual environment is activated, install the necessary dependencies using pip:
pip install -r requirements.txt
After installing all dependencies, you can run the application:
python main.pyOr if you want to use the command-line version:
python main-nogui.py [ARGS]This project is distributed under the GPLv3 licence. You may modify and redistribute it under the same terms. Please consult the LICENSE file for further details.