How do you plot a line on a function defined by colors?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello, I want to plot a line on a color defined function (enclosed example below), such that the line follows the boarders between colors. I don't want to plot a line that roughly follows the color boarders but follows the boarder exactly based on the change in color. However, I am unsure how to acomplish this. Any help appreciated.
Example:
3 comentarios
Respuestas (3)
Voss
el 19 de Oct. de 2023
img = imread('image.png');
imagesc(img)
hold on
contour(mean(img,3),'k')
0 comentarios
Walter Roberson
el 19 de Oct. de 2023
levels = unique(YourData);
contourf(YourData, levels);
0 comentarios
Ver también
Categorías
Más información sobre Blue en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!