Borrar filtros
Borrar filtros

how to plot multiple graph on top of images together?

2 visualizaciones (últimos 30 días)
DARSHAN KUMAR BISWAS
DARSHAN KUMAR BISWAS el 4 de Jul. de 2022
Comentada: DARSHAN KUMAR BISWAS el 5 de Jul. de 2022
Suppose there are multiple numbers of images and I have to plot graph over each one of them and display all of them together. How can I do it?
  2 comentarios
DGM
DGM el 4 de Jul. de 2022
That's a remarkably vague description.
Are the images already in the workspace, or do they have to be generated/read?
What kind of plot? A line plot? A contour? A filled contour?
How is the plot aligned to the image?
How do you want to display them "together"? Do the plots share a similar domain and range such that you intend to display them in the same axes? Are they to go in separate axes? Do axes decorations matter, or is the goal to just create a montage?
DARSHAN KUMAR BISWAS
DARSHAN KUMAR BISWAS el 4 de Jul. de 2022
the images need to be read.
It's a line plot.
the line separates two regions in the image.
like the image below there are multiple number of images with various length of the orange part.
I need to plot the black line on top of the image and display all the images together one after another.

Iniciar sesión para comentar.

Respuestas (1)

DGM
DGM el 4 de Jul. de 2022
Editada: DGM el 4 de Jul. de 2022
This is an oversimplified example:
% a picture comes from somewhere
A = imread('peppers.png');
% some data comes from somewhere
x = linspace(0,2*pi,100);
y = sin(x);
% get data range
xrange = min(x)+[0 range(x)];
yrange = min(y)+[0 range(y)];
% display the image
hi = image(xrange,yrange,A); hold on
% display the plot
hp = plot(x,y,'c');
How exactly the plot and image need to be located/scaled with respect to each other is something you'll have to decide. If there are multiple images, read/create them and then plot them in subplots using a loop.
There are other examples of overlaying plots on images. Here is one using contourf():
  1 comentario
DARSHAN KUMAR BISWAS
DARSHAN KUMAR BISWAS el 5 de Jul. de 2022
the images need to be read.
It's a line plot.
the line separates two regions in the image.
like the image below there are multiple number of images with various length of the orange part.
I need to plot the black line on top of the image and display all the images together one after another.

Iniciar sesión para comentar.

Categorías

Más información sobre 2-D and 3-D Plots 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!

Translated by