Creating a custom colormap with a specific range of colors

조회 수: 6 (최근 30일)
Filip Juchnicki
Filip Juchnicki 2021년 9월 28일
댓글: Image Analyst 2021년 9월 28일
Hello. I have written a code that creates a matrix filled with values ranging from -127 to 127 and distributed like a sinusoid. The imagesc function creates an image like the one I attached. Now I need to make a colormap so that I can input 2 variables that let me change the colors so that if I take a (for example) -50 to 50 range the image would start and end with shades of gray (-127 is supposed to be always black, 127 should always be white and the shades of gray are supposed to be taken from this range). Any help regarding the creation of the colormap, as I've had some problems with it myself, would be appreciated.
  댓글 수: 1
Image Analyst
Image Analyst 2021년 9월 28일
Not sure I understand. So would you want colors between -50 and 50 and gray scale outside that range?

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

답변 (1개)

Johannes Fischer
Johannes Fischer 2021년 9월 28일
편집: Johannes Fischer 2021년 9월 28일
I'm not sure I understand your problem correct, but does
% create matrix with vals -50 50
matrix = 100 * (rand(100, 100) - 0.5);
imagesc(matrix, [-127 127])
colormap(gray)
do the trick for you?
  댓글 수: 1
Filip Juchnicki
Filip Juchnicki 2021년 9월 28일
Nope. You just created a matrix with random numbers from -50 to 50. I need a custom colormap so that I can put it over the image I attached so that the colors start and end with a certain shade of gray.
In the image u can see the brightest color to be white and the darkest to be black. I want to be able to create an image that has only gray. And the shade of gray needs to be determined by a variable. I think I need to use meshgrid and colormap functions but I'm not sure how.

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

카테고리

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

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by