Tagged Questions
1
vote
1answer
115 views
Converting tiff images to avi in matlab
I'm trying to use VideoWriter to convert large amounts of tiff images into an avi video. I'm having trouble with the for loop to convert the images into a video. Here is the code I have so far:
...
1
vote
1answer
76 views
An error while importing an image as a variable into Matlab
I wanted to import a tif image into Matlab workspace as a variable using File/import data tool. But I got the following error "Warning: The datatype for tag SamplesPerPixel should be TIFF_SHORT ...
2
votes
1answer
467 views
Matlab write image with floating point values?
I have a .tif image where each pixel value (single channel) is floating point. Is there anyway to read it with matlab (imread) do some operation and write it back in floating point ?
If i do ...
2
votes
3answers
444 views
Matlab: how to save TIFF with transparency or PNG with no compression?
I have to process a lot of images and save results to image files with transparency in Matlab. But PNG compression takes too much time for me. How can I save PNG with no compression or TIFF with ...
0
votes
0answers
195 views
Compress multipage tiff
For faster loading of images in MATLAB I am using multi-page TIFF files which for me work much faster than MATLAB's simple imread. But my problem is that the size of the TIFF file is way bigger than ...
3
votes
1answer
364 views
MATLAB tif file format vrs PNG file format. True lossless compression?
I have been working on a problem where I need to save a matrix as an Image and for it to be a truly lossless example of the matrix in MATLAB.
I have tried writing the image as a png and tiff both in ...
0
votes
1answer
72 views
Plotting several sequences of frames from tiff files with a chosen size
I am analyzing some experimental data in the form of .tiff multi frames. Withins these tiff files i need to visualize and compare some specific sequences of frames. I want to generate a figure that ...
0
votes
1answer
195 views
Blank TIF image when using MATLAB TIFF class
*strong text*I am trying to save a multi-page TIF file using the MATLAB TIFF class in 2012a by following the example in the documentation. My usage differs in that I am writing a 32-bit grayscale ...
0
votes
2answers
441 views
Averaging TIFF images in Matlab?
I'm trying to average 8 TIFF images in Matlab, but I've been unable to get a proper result. If I read in the images and divide by a fixed number (the number of images read), I end up with a very dark ...
0
votes
2answers
1k views
convert 16 bit images to 8 bit with custom gamma level using matlab
I have tif image in 16 bit format.
Now I want to convert this data set to an 8 bit rgb image for export as jpg.
If I use
RGB8 = im2uint8(imageData);
then I have a matrix with only 255 values, ...
2
votes
2answers
2k views
matlab: how to save TIFF series?
Lets say I have a 3D array 'img' (x, y, frame) and want to save it as a TIFF. So far I was doing it by saving one-by-one like this:
for K=1:length(img(1, 1, :))
outputFileName = ...
1
vote
1answer
492 views
How to plot the histogram of a volume using imhist in MATLAB?
I have array of TIFF images. I have stacked them to make a volume. How can I plot the histogram of the volume in MATLAB? The function "imhist" expects its input to be two-dimensional.
I have also ...
3
votes
2answers
2k views
16-bit grayscale TIFF
What is the bit-format of a 16-bit grayscale TIFF? I read that only 10 bits actually contain intensity data--is this true? When I try to open a 16-bit TIFF in Matlab using imshow(), the image is ...
0
votes
1answer
266 views
How do I interpret the meta information in a TIFF image?
The information of my image is as follows:
imfinfo('drosophila.tif')
ans =
Filename: 'drosophila.tif'
FileModDate: '10-Nov-2009 18:52:42'
FileSize: ...
2
votes
2answers
6k views
Automatic saving a figure as an image file in Matlab
I'm creating 49 figures in Matlab, they are all created automatically one after the other. I want them to also automatically be saved as .tif or .jpg images with names corresponding to their figure ...