Function to read a 16bit color composite image to matlab
이전 댓글 표시
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
KSSV
2017년 7월 4일
Attach image...
Yonatan Degefu
2017년 7월 4일
Nirav Sharda
2017년 7월 13일
The following documentation link has a section that talks about how to read tiff file image data and metadata.
채택된 답변
추가 답변 (2개)
Kelly Kearney
2017년 7월 13일
0 개 추천
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
2019년 4월 29일
0 개 추천
Try using imagesc(data matrix)
댓글 수: 1
Walter Roberson
2019년 4월 30일
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()
카테고리
도움말 센터 및 File Exchange에서 Images에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!