2,387 questions
0
votes
0
answers
57
views
Exception found when using itextpdf TiffImage function
I got the following exception when using iTextPDF 5 to get the Image from Tiff.
Any idea how to resolve it?
`
Image img = Image.getInstance(myTiffFile);
Caused by: com.itextpdf.text....
0
votes
0
answers
155
views
Convert NETCDF files into TIF files
I’m creating a Python program that converts NetCDF files into GeoTIFFs, allowing the user to select the variable and time step using a Tkinter interface.
The conversion works, but I’m having a ...
1
vote
1
answer
130
views
How to read a chunk of big tiff file in Python? [closed]
I have a TIFF file with a size of (48000, 432000) and I would like to upload only a piece of the image, for example, pass a parameter like (X, Y, wid, hei), where X, Y are the coordinates of the upper-...
-1
votes
1
answer
90
views
Converting 2d tiff into 3d tif files - stack error
I'm working in WSL Ubuntu, writing this script in SPAM Jupyter Lab. I want to convert my 2d TIFF files into a 3d TIFF file. After stating the directory where the 2d TIFF files are, this is my code:
...
0
votes
0
answers
46
views
Exraction of single band from tiff file which was exported from SNAP
I am a beginner in Google Earth Engine (GEE) and currently working with Sentinel-1 satellite data. I have used SNAP software to perform various preprocessing steps on the data, including multilooking (...
3
votes
1
answer
257
views
How to decode and parse JEOL microscope metadata embedded in TIFF tags (binary format)?
I'm working with microscope images captured using a JEOL system, and I'm trying to decode metadata stored in the TIFF tags. The data appears to be in a binary format and when extracted (using tifffile ...
3
votes
2
answers
108
views
Few questions on a medical dataset
I am currently working on a medical dataset containing whole slide images (~300 images).
These images are pretty big (.tif, average of 7k by 7k pixels). I am currently dividing each of these images ...
1
vote
0
answers
153
views
How to Compress TIF with JPEG compression?
I'm trying to accomplish the following:
Open a TIF image file (which contains an alpha channel and Geo Location data)
remove the Alpha channel
Save a compressed version of the TIF file using JPEG ...
0
votes
0
answers
82
views
Can't create a multilayer TIFF readable with PhotoShop with python libraries
I have tried different tutorials in order to create a single multilayer TIFF from individual files, but with none of them I managed to open the file correctly with Adobe PhotoShop. Below is an example ...
3
votes
1
answer
178
views
Possible to save TIFF using CCITT (Group4) compression with OpenCV?
Is it possible to use OpenCV to save a TIFF using CCITT (Group 4) compression?
There appears to be a limitation (or missing code) allow these 1 bpp images to be saved.
0
votes
1
answer
66
views
APS Viewer Issues: Calibration Inconsistencies & Large File Upload Failures
We (ATOM) are working on a construction technology platform that integrates with Autodesk APS to process and visualize site data. As part of our workflow, we use the APS Viewer to display DWG files ...
3
votes
3
answers
205
views
How to plot text only, without any margin, in a tiff file?
I want to build a tiff file with text only and no margins around the text, using R.
I tried :
library(ggplot2)
plt <- ggplot() +
geom_text(aes(x=0,y=0,label="test")) +
theme_void()
...
-1
votes
1
answer
212
views
GeoTIFF No Data Value Inconsistency Issue
Why do some values in my .tif file appear to be no data values, yet aren't recognized as such, even though they match the no data value specified in the metadata?
0
votes
1
answer
191
views
QGIS raster generation with defined grid
Is there a way in QGIS to define a grid and generate separate tiff files for every grid cell? Like in this matter:
Open XYZ Tiles -> OpenStreetMap.
Use a tool to define a grid over the interesting ...
1
vote
2
answers
87
views
Averaging multiple rasters while considering NA pixels
I am using MODIS11A2 LST 8-day average raster .tif data to calculate daily average for the year. For year 2001, I have 44 files (2 files are missing). I want that a pixel should be excluded from the ...
