how to overlay(superimpose) contour plot(coloured) over a gray scale image
27 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Srinivas Murthy
am 3 Mai 2011
Kommentiert: Image Analyst
am 26 Nov. 2018
I am trying to superimpose a colored contour plot on a grayscale image. I used hold on and then i tried to plot a contour plot. Also i tried using two color maps in a same figure window. But even that is not working. Pls do help me in solving this problem. Typically the contour plot occupies only the central part of the greyscale image , the rest is the greyscale image.
0 Kommentare
Akzeptierte Antwort
Teja Muppirala
am 3 Mai 2011
Bearbeitet: Image Analyst
am 26 Nov. 2018
A grayscale image with a colored contour plot superimposed:
% Make some sample grayscale image
I = abs(sin((1:500)'/100)*sin((1:500)/100));
% Convert the grayscale image to RGB
Irgb = cat(3,I,I,I);
% Plot the image and some contours in color
image(Irgb)
hold all
contour(I);
4 Kommentare
Teja Muppirala
am 4 Mai 2011
This will all cover up your grayscale image though.
Do you want to make the contour plot transparent? Because that might be not be very simple if you use CONTOURF...
Weitere Antworten (3)
Walter Roberson
am 3 Mai 2011
You haven't indicated what problem you are encountering. Your reference to two color maps hints that you are having getting the two to come out with the colors you want.
Contour plots are a hggroup object that has children that are patch objects. You can change the color properties of the patch objects. The only real trick that have found is that in order to switch between filled and non-filled, you have to change a property in the hggroup object that is the parent of the patch objects.
0 Kommentare
Sean de Wolski
am 3 Mai 2011
Change the calling function from mesh to contour. Everything else is set up for what you want.
0 Kommentare
safa kassous
am 26 Nov. 2018
salut ,
j'ai une image a et une image b qui est un contour de a et je veux superposer le contour sur l'image d'origine a.
Quoi faire ?
1 Kommentar
Image Analyst
am 26 Nov. 2018
Or do you mean like where you want to stack the RGB images vertically, like this:
% Takes an RGB image and stacks the separate color channels at different Z levels.
imtool close all; % Close all imtool figures if you have the Image Processing Toolbox.
clc; % Clear the command window.
close all; % Close all figures (except those of imtool.)
clear; % Erase all existing variables. Or clearvars if you want.
workspace; % Make sure the workspace panel is showing.
format long g;
format compact;
fontSize = 20;
rgbImage = imread('peppers.png');
% Extract the individual red, green, and blue color channels.
redChannel = im2double(rgbImage(:, :, 1));
greenChannel = im2double(rgbImage(:, :, 2));
blueChannel = im2double(rgbImage(:, :, 3));
H(1) = slice(repmat(redChannel,[1 1 2]),[],[], 1); %slice() requires at least 2x2x2
set(H(1),'EdgeColor','none') %required so image isn't just an edge
hold on
H(2) = slice(repmat(greenChannel,[1 1 2]),[],[], 2); %slice() requires at least 2x2x2
set(H(2),'EdgeColor','none') %required so image isn't just an edge
H(3) = slice(repmat(blueChannel,[1 1 3]),[],[], 3); %slice() requires at least 2x2x2
set(H(3),'EdgeColor','none') %required so image isn't just an edge
hold off
colormap(gray(256))
axis ij
Siehe auch
Kategorien
Mehr zu Red finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!