difference between same images
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi,
I have an image matrix which has a size of "mxnx3 uint8". I created a zero matrix by using zeros(m,n) (lets call it "image_filled"). So that, mxn double matrix is formed. Then I tried to copy the pixels of image matrix sample by sample to the zero matrix. I figured out that there has been a contrast difference between two images. Why this happens? How can I fix it?
Note: Image on the left is image_filled. Right side is original_image. Please do not mind the black lines on the images
Thanks so much.
댓글 수: 0
답변 (1개)
Image Analyst
2016년 7월 29일
편집: Image Analyst
2016년 7월 29일
They look gray scale, so let's convert to gray scale first, and then do the copying
[rows, columns, numberOfColorChannels] = size(rgbImage);
% Get grayscale image from original RGB image.
if numberOfColorChannels == 3
grayImage = rgbImage(:,:, 2); % Extract green channel only - it's usually the least noisy one.
else
grayImage = rgbImage;
end
image2 = zeros(rows, columns); % Not sure why you did this because it's not necessary.
% Now copy gray image into image2
image2 = grayImage;
A contrast difference could happen if you used different parameters for imshow. For example
imshow(grayImage, []); % Stretch contrast
imshow(image2); % No contrast stretch.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!