필터 지우기
필터 지우기

How can i color the pixels in red?

조회 수: 4 (최근 30일)
Pamela Paolo
Pamela Paolo 2012년 12월 5일
Hi, for an image I, I want to color in red the pixels having the coordinates x and y stored in the matrix xy
[L C]=size(I);
xy=[x y];
thanks in advance
  댓글 수: 1
Walter Roberson
Walter Roberson 2012년 12월 5일
What kind of image is it? RGB or pseudocolor? If it is pseudocolor is it acceptable that it be converted to RGB using the current colormap ?

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

답변 (1개)

Image Analyst
Image Analyst 2012년 12월 5일
Try this, assuming you want to set pixels in an RGB image to red.
for k = 1 : length(xy)
row = int32(xy(k,1));
col = int32(xy(k,2));
rgbImage(row, col, 1) = 255;
rgbImage(row, col, 2) = 0;
rgbImage(row, col, 3) = 0;
end
If you have a monochrome image, you'll first have to convert it to an rgb image:
rgbImage = cat(3, grayImage, grayImage, grayImage);
% After that, then it's the same loop as above.
for k = 1 : length(xy)
row = int32(xy(k,1));
col = int32(xy(k,2));
rgbImage(row, col, 1) = 255;
rgbImage(row, col, 2) = 0;
rgbImage(row, col, 3) = 0;
end

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by