フィルターのクリア

gray to hot

3 ビュー (過去 30 日間)
Adam
Adam 2012 年 4 月 17 日
Hi, do not know how convert the image from color gray to hot?
RGB = imre ad('peppers.png');
HSV = rgb2hsv(RGB);
imshow(RGB);
imshow(HSV);
this is for RGB

採用された回答

Sean de Wolski
Sean de Wolski 2012 年 4 月 17 日
colormap(hot)
?
  4 件のコメント
Adam
Adam 2012 年 4 月 17 日
Specifically, that two different images of themselves and put both the seat and I saw the difference.
subplot(131);
I = imread('board.tif');
J = rgb2gray(I);
imshow(I)
subplot(132);
imshow(J);
XFUSmean1 = wfusimg(J,I,'db2',5,'mean','mean');
imshow(133);
imshow(XFUSmean1);
but this is for RGB and lends it does not work
Sean de Wolski
Sean de Wolski 2012 年 4 月 18 日
Adam, did you try freezecolors?

サインインしてコメントする。

その他の回答 (0 件)

製品

Community Treasure Hunt

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

Start Hunting!

Translated by