Function to read a 16bit color composite image to matlab
Mostrar comentarios más antiguos
Hi, I was trying to open a 16 bit color composite image in matlab but everytime it gives me a dark surface when using imread. What is another function I can use to read it into matlab and perform further image analysis.
3 comentarios
KSSV
el 4 de Jul. de 2017
Attach image...
Yonatan Degefu
el 4 de Jul. de 2017
Nirav Sharda
el 13 de Jul. de 2017
The following documentation link has a section that talks about how to read tiff file image data and metadata.
Respuesta aceptada
Más respuestas (2)
Kelly Kearney
el 13 de Jul. de 2017
0 votos
Many years ago, I had to work with some 16-bit color avi files. Those files stored the RGB color data using 16 bits per pixel: 5 bits each for red, blue, and green, and one bit unused. Assuming your images use a similar encoding, you can probably adapt that code to your tiff images; it's available here: avidread16bitcol.m.
Eslam Wafdy
el 29 de Abr. de 2019
0 votos
Try using imagesc(data matrix)
1 comentario
Walter Roberson
el 30 de Abr. de 2019
I talked about that in my answer. The data range of interest is often not the data range so you have to be careful about how you use imagesc()
Categorías
Más información sobre Images en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!