Skip to content

JanOosting/django-histoslide

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Histoslide

Histoslide is a Django app to show openslide images. It can use other OpenSeadragon or the Google Maps API to navigate the images.

Quick start

  1. Install openslide http://openslide.org/ on your system

  2. Add "histoslide" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...
        'histoslide',
    ]
    
  3. Configure histoslide in settings.py

SLIDEFILE_EXTENSIONS = ('.jpg', '.jpeg', '.mrxs', '.tif', '.tiff') HISTOSLIDE_SLIDEROOT = <absolute path to root of slide files>

  1. Include the histoslide URLconf in your project urls.py like this:

    url(r'^histoslide/', include('histoslide.urls')),
    
  2. Run python manage.py migrate to create the histoslide models.

  3. Start the development server and visit http://127.0.0.1:8000/admin/ to register one or more slides (you'll need the Admin app enabled).

  4. Visit http://127.0.0.1:8000/histoslide/slide/1/ to view the first slide.

About

Handle openslide images in Django

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published