Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 961 Bytes

README.md

File metadata and controls

39 lines (26 loc) · 961 Bytes

Flask Photo Restorer Web Application

Check out the demo here.

This is a simple web application built with Flask that allows users to upload images and restore them using a photo restoration model.

Table of Contents

Installation

To run this application, you'll need to set up a virtual environment and install the required dependencies listed in the requirements.txt file.

Create a Virtual Environment

# Create a new virtual environment (Python 3.x)
python -m venv venv

# Activate the virtual environment (Linux/macOS)
source venv/bin/activate

# Activate the virtual environment (Windows)
venv\Scripts\activate

Install Dependencies

pip install -r requirements.txt

Usage

To start the Flask web application, simply run the following command:

python main.py