Questions tagged [large-image]

5 questions
2
votes
1 answer

Opening pyramidal images ob google collab: large_image getTileSource doesn't work on google collab (No available tilesource for ndpi)

I used all of these commands to make sure I have everything that's needed for loading dpi pyramidal images on google collab with no luck so far. !pip install large_image !apt update && apt install -y openslide-tools !pip install…
AMM
  • 2,195
  • 2
  • 20
  • 28
1
vote
1 answer

Use leaflet to display non-geographical tiled images

The leaflet documentation provides an insightful tutorial to work with non-geographical image, but it is based on imageOverlay. const imageSize = { width: 2315, height: 2315, } const maxZoom = 12 const minZoom = 8 const toLatLng = (x, y) =>…
srjjio
  • 930
  • 1
  • 8
  • 16
1
vote
1 answer

Show full screen image on tap flutter (Hero)

I have the image shown using network to local file Hero( tag: "customWidget", child: Container( width: context.screenWidth / 2, height:…
S4nj33v
  • 299
  • 3
  • 11
1
vote
0 answers

Python 3.x tkinter, PIL unable to show large image, image automatically cut

This is my first experience with tkinter package. I'm trying to show a large image (5000, 5000) on a small window using x and y scrolls to explore the whole image. By following this answer, I have implemented a ScrollabarImage: import tkinter from…
Giuseppe Angora
  • 833
  • 1
  • 10
  • 25
0
votes
1 answer

Is there a crate that can read insanely large png files quickly with no data loss. (17mb files with 21600 x 10800)

My rust app needs to have access to world heightmap data (topography) which I have downloaded from nasa's official website. Currently, with me using the Image crate https://lib.rs/crates/image, it takes roughly 1 minute for the entire app to load,…
James Gaunt
  • 119
  • 1
  • 14