imshow shows image as noisy even though its not

조회 수: 2 (최근 30일)
PhD Problems
PhD Problems 2018년 12월 16일
댓글: Guillaume 2018년 12월 16일
Hi, Im trying to learn a segmentation network using CNN, my network is producing very poor results. I looked at the images and I'm wondering if this is the reason. My input images are stack of images in a .tif file. In Windows image viewer below is what I get:
I am trying to detect and segment the bright spots shown above
But when I open the same in Matlab using imshow() I get
All the information is basically lost. However when I use imagesc() I get the following:
Which is much better, but why are my images not working with my network? Is it reading in the imshow() version output? How do I fix this?
Thanks
edit:
below is the code I am using to read in the tiff files:
fname = 'my_file_with_lots_of_images.tif';
info = imfinfo(fname);
imageStack = [];
numberOfImages = length(info);
for k = 1:numberOfImages
currentImage = imread(fname, k, 'Info', info);
imageStack(:,:,k) = currentImage;
end
  댓글 수: 5
PhD Problems
PhD Problems 2018년 12월 16일
편집: PhD Problems 2018년 12월 16일
imshow(imageStack(:,:,7))
imagesc(imageStack(:,:,7))
My concern is how the data is interpreted by the CNN network, is it how it is shown in imshow()?
Also
imshow(imageStack(:,:,7), [])
produces the following
13213.jpg
Thanks
Guillaume
Guillaume 2018년 12월 16일
We need either the raw image (the tif file) or the output of imfinfo to understand what type of image you're dealing with.
Other than a different colour map (grey vs green) your latest display with imshow looks more or less the same as the one you get with the image viewer.
Possibly, the image is indexed, in which case, you're currently not loading the colour map (2nd output of imread). Hence the difference.
Your CNN will have requirements for the type of images it can process. That's completely independent of imshow but if you've not loaded the image properly, then yes you'll run into trouble.

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Image Data Workflows에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by