I am trying to display a sentinel-1 satellite image which is of size 26000(width) X 17000(height) pixels and using Python 3.5. I am able to load this image in numpy as an array and trying to display in matplotlib but unable to do as it gives Memory Error..The screen resolution is 1600(width) X 1200(height) pixels.I am using windows 7 with 8GB RAM. I agree that it might not be able to display due to memory constraints but is there any way I can display such huge image ? Also I have seen many satellite image processing softwares such as SNAP(sentinel toolbox) which can display such huge images in the above specified screen resolution, but cannot find how they do it. Kindly help.
Displaying an image with matplotlib having resolution greater than screen resolution
845 Views Asked by Shubham_geo At
1
There are 1 best solutions below
Related Questions in PYTHON-3.X
- Update a text file with ( new words+ \n ) after the words is appended into a list
- Kivy - Create new widget and set its position and size
- TypeError: encoding or errors without a string argument
- How to print varible name in python
- PyQt, Python 3: Lambda slot assigning signal argument to a variable?
- How to write data to stdin of the first process in a Python shell pipeline?
- pygame.draw.circle, still draws a square
- Duplicate Frames Created When Calling a Function in a Tkinter Application
- Python TypeError: can only concatenate tuple (not "int") to tuple
- recursively editing member variable: All instances have same value
- missing 1 required positional argument: 'key'
- How do I fix this sorting error?
- Dictionary values missing
- Why does opening a file in two different encodings work as expected?
- Binary bit flip generator in python
Related Questions in NUMPY
- How can I serialize a numpy array while preserving matrix dimensions?
- store numpy array in mysql
- Trying to save an np array with string and floats, but getting a error
- Does numpy broadcast in *all* of its functions?
- Is there any implementation of hstack in gnumpy
- Mayavi - color vectors based on direction instead of magnitude
- How to install scipy misc package
- Numpy Vs nested dictionaries, which one is more efficient in terms of runtime and memory?
- How to count distance to the previous zero in pandas series?
- Changing the amount of points changes the result of the fft
- Succint way of handling missing observations in numpy.cov?
- Fastest Way to access and put values in matrix
- Enforcing that inputs sum to 1 and are contained in the unit interval in scikit-learn
- Cython speed vs numpy
- Best practice for using common subexpression elimination with lambdify in SymPy
Related Questions in MATPLOTLIB
- How to use meshgrid with large arrays in Matplotlib?
- how to change matplotlib default figure location on screen
- Matplotlib does not display interactive graph in Ipython
- term frequency over time: how to plot +200 graphs in one plot with Python/pandas/matplotlib?
- how to use Pyplot module of matplotlib to plot two arrays of data
- Matplotlib 3d: surface does not cover a line
- Trying to get matplotlib/numpy to work. Have tried different solutions and out of ideas
- Using matplotlib.pyplot in iPython Notebook
- Matplotlib Table's Font Size
- Python3 embedding Matplotlib Plot inside GTK3 using Glade
- How can I draw a scatter plot with contour density lines in polar coordinates using Matplotlib?
- Pandas plot dataframe as scatter complains of unknown item
- A right way to represent 4 dimension points using colors in a matplotlib scatter
- Matplotlib disappearing plots multiple axis
- Direct chart plotting Pandas DataFrame columns to Xlsxwriter in a loop
Related Questions in SCREEN-RESOLUTION
- How to make size of Window responsive for every type of screen resolution using Windows form
- Bad Swing UI scaling on high resolution (MS Surface)
- What is today's most popular screen resolution?
- Generate a Unity 2d Game Object Dynamically within the different devices screen bounds
- Layout folder name for tablet 21"
- How to resize image according from screen resolution on html css
- iOS - Converting an iPad app to a universal app - resolution issue
- iPhone 4S/6 fixing resolution by scale?
- How to make game fit any screen size
- ScreenToWorldPoint offset for different resolutions in Unity 2D
- Independent scrolling panels with no body scroll
- Developing responsive website, independent of device resolution
- Am I understanding Android density independence correctly?
- Why and how display zoom option changes iPhone screen size in points?
- Android, different layout for 10.1 and 9.7 inch displays
Related Questions in SENTINEL1
- How can I create a graph with time variation of all the polygons in a Shapefile in GEE?
- Is there a reason to apply a spatial SAR speckle filter only on the separate polarizations but not on the Cross Ratio?
- Import SENTINEL-1 phase data to AWS
- Displaying an image with matplotlib having resolution greater than screen resolution
- Python API sentinelsat HTTP status 500 Internal Server Error:
- Filtering Sentinel 1 Image Collection to my area of interest produced no feature (or image) in google-earth-engine
- Plot 2 dimensional numpy array in .npy file using matplotlib?
- Error ruinning CMOD5.N function with python
- google earth engine- Sentienel 1 Download Image Colllection
- Converting pixel position to geographical coordinates (lat, long) for a Sentinel-1 SAR image
- how to retrieve Common data for Sentinel-1, Sentinel-2 and Landsat-8 on same study area
- Problems with R raster package handling of coordinates, resolution and extent of a raster read from a "tiff" file from Sentinel-1
- Converting geographical coordinates (long, lat) to pixel position (x,y) for a Sentinel-1 SAR image
- Python API sentinelsat error in download
- How to remove mosaic lines between images with gdal
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Tried to create an image with the width and height as specified by you. My screen resolution is 1920 by 1080, FHD
The plot is generated but about 7GB of memory is eaten by python!