Search code examples
javascriptdeepzoomopenseadragon

Openseadragon viewer not displaying DZI image


We are currently using openseadragon DZI project to create digital pathology viewer for viewing Whole Slide Images. as per the documentation, we did exactly as told. Our viewer does open the navigation tools but does not display the image.

You can check our url: https://mbracecloud.com/view.php?do=sdf

This is the code we are currently using to call the viewer

<script src="openseadragon/openseadragon.js"></script>
<script type="text/javascript">
    var viewer = OpenSeadragon({
        id: "openseadragon1",
        prefixUrl: "openseadragon/images/",
        tileSources: "https://mbracecloud.com/highsmith.dzi"
    });

</script>

How to solve this problem.


Solution

  • If you look in the network tab of the inspector, you can see that all of the image tiles are 404. For instance:

    https://mbracecloud.com/highsmith_files/8/0_0.jpg

    It looks like you have highsmith.dzi in the correct location; do you also have the highsmith_files next to it, and is it full of the tiles for that image?