Table of Contents
Web application that allows User to improve the quality of low-resolution images using the deep learning model. The logged in User can also store orginal and improved images on the server.
- Python 3 - a programming language
- HTML - a language for describing the structure of websites
- Sass - a stylesheet language that is compiled to CSS
- JavaScript - a programming language that allows you to implement complex features on web pages
- Django - a high-level Python Web framework
- Docker - a containerization technology
- Bootstrap - a framework for developing responsive and mobile-first websites
- Particles.js - a lightweight JavaScript library for creating particles
- Leaflet - a open-source JavaScript library for mobile-friendly interactive maps
- OpenStreetMap - a free, editable map of the whole world
- Neural Enhance - a deep learning model
- User registration and login
- Logged in User features:
- Storing images on the server
- Loading images from disk or by entering a URL
- Improving images stored on the server using the neural network
- Improving images without saving them to the server using the neural network
- Adding feedback on image processing results
- Not logged in User features:
- Improving images (with a size limit) using the neural network without being able to save images to the server
- "About" tab with the access map
These instructions allow you to run a copy of the project on your local computer for programming and testing purposes.
- Python 3
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install python3.8
sudo apt-get install python3-pip
- Docker
sudo apt-get install docker.io
- Clone the repo
git clone https://github.com/DrDEXT3R/AImage.git
- Install the necessary dependencies
cd aimagesite
pip install -r requirements.txt
- Create database
python manage.py makemigrations
python manage.py migrate
In our project we use sqlite3 database. If you want to use different kind of database it's no problem, because Django uses ORM.
All you have to do is change the database settings in the aimagesite/aimagesite/settings.py
file:
- Run local server
python manage.py runserver
- Open local server
http://127.0.0.1:8000/
- Check the Issues and the Projects sections
- Fork the project
- Create your branch (check the "Branches" section below for naming convention)
- Commit your changes
- Open a Pull Request
Code Flow Branches:
- Master -
master
The branch with the last working version of the project. - Development -
develop
The main branch on which users' work is assembled.
Temporary Branches:
- Feature -
feature/branch-name
A branch on which all work related to software implementation is performed. - Release -
release/vX.X
A preparatory branch for the release of the project version. - Bug Fix -
bugfix/branch-name
This is a fix that needs to be implemented. - Hot Fix -
hotfix/branch-name
This is a fix that must be included in the project version as soon as possible.
- v1.1
- Prepare the application for deployment in a production environment
- REMOVE: Google Drive feature (due to Google's policy)
- FIX: Form display on the homepage in high resolutions
- CHANGE: Update docs
- v1.0
- The first proper release
- Tomasz Strzoda - DrDEXT3R
- Dawid Macha - diejdablju
- Marek Hermansa - marekhermansa
This project is licensed under the GNU Affero General Public License v3.0 - see the LICENSE file for details