Final Project of Digital Image Processing Course
- Grayscaling
- View Histogram
- Zoom In & Zoom Out
- Flip Vertical & Flip Horizontal
- Rotate
- Crop
- Cut & Paste
-
Create virtual environment for Python 3.6 and activate.
$ virtualenv -p python3.6 env $ source env/bin/activate
-
Install requirements.
$ pip install -r requirements.txt
-
Initial migration for django-models.
$ python manage.py migrate
-
Create superuser account.
$ python manage.py createsuperuser
-
Run django web server locally and access
http://localhost:<port>
from browser.$ python manage.py runserver