I want to plot custom colorbar of lines plotted on the image. Kindly suggest me a solution.

2 visualizaciones (últimos 30 días)
NColors = 10;
RGBn = linspecer(NColors);
moon = imread('moon.tif');
imshow(moon);
quiver(0,0,5,5,'color',mycol); %mycol is conditionally selected from RGBn; multiple arrows are plotted on the image
colorbar % shows the colorbar of moon. But I want to display the colorbar of my custom 10 colors. Is that possible?

Respuestas (1)

Walter Roberson
Walter Roberson el 2 de Oct. de 2016
colormap(RGBn)
after the imshow() and before the colorbar()

Categorías

Más información sobre Earth and Planetary Science en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by