https://github.com/cvan/cbir-portal
Web backend for Content-Based Image Retrieval (CBIR) suite
https://github.com/cvan/cbir-portal
Last synced: about 1 year ago
JSON representation
Web backend for Content-Based Image Retrieval (CBIR) suite
- Host: GitHub
- URL: https://github.com/cvan/cbir-portal
- Owner: cvan
- License: other
- Created: 2010-12-15T00:02:11.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2010-12-18T05:11:14.000Z (over 15 years ago)
- Last Synced: 2025-04-10T16:29:37.106Z (about 1 year ago)
- Language: Python
- Homepage: https://github.com/zachriggle/MSU-CSE484-Content-Based-Image-Retrieval
- Size: 58.8 MB
- Stars: 3
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
CBIR Portal Installation
========================
To download:
git clone git://github.com/cvan/cbir-portal.git
We're using `pip` to fetch and install our dependencies. If you don't already have it, install it now:
easy_install pip
Now for installing the dependencies:
pip install -r requirements/common.txt -r requirements/dev.txt
To set up the database schema:
./manage.py syncdb
To populate the images database:
./manage.py imgdb
To run the Django web server:
./manage.py runserver
Global variables are defined in `settings.py`.
The paths to the CBIR package are defined in `environment.py` and `settings.py`.