Sketch the uploaded Image
- Upload the image
- Use opencv to make image like sketch
- Render the sketched image
- Clone the repo
- Install the requirements
pip install -r requirements.txt
- Create a file
dev_settings.py
inbackend
folder with suitable variables
Model of dev_settings.py
ALLOWED_HOSTS = ['localhost']
SECRET_KEY = 'add_secret_key_key'
DATABASES = {
'default': {
'ENGINE': '',
'NAME': '',
}
}
- Set
debug = False
inbackend/settings.py
- Run the server
python manage.py runserver