필터 지우기
필터 지우기

problem of color display in an image

조회 수: 2 (최근 30일)
dakhli mohamed
dakhli mohamed 2019년 2월 15일
답변: Image Analyst 2019년 2월 16일
hello i have a display problem i want to convert the black color in the image attached to the red color
here is the code that I wrote
maps = load('img.mat');
fetrain = struct2array(maps);
imshow(fetrain)

채택된 답변

Image Analyst
Image Analyst 2019년 2월 16일
Try this:
s = load('img.mat')
rgbImage = s.img;
subplot(1, 2, 1);
imshow(rgbImage)
impixelinfo
title('Original Image', 'FontSize', 20);
% Extract the individual red, green, and blue color channels.
redChannel = rgbImage(:, :, 1);
greenChannel = rgbImage(:, :, 2);
blueChannel = rgbImage(:, :, 3);
blackMask = redChannel == 0 & greenChannel == 0 & blueChannel == 0;
redChannel(blackMask) = 255;
greenChannel(blackMask) = 0;
blueChannel(blackMask) = 0;
% Recombine separate color channels into a single, true color RGB image.
rgbImage = cat(3, redChannel, greenChannel, blueChannel);
subplot(1, 2, 2);
imshow(rgbImage);
title('Now with black made red', 'FontSize', 20);
0000 Screenshot.png

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Colormaps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by