how to plot multiple graph on top of images together?

2 ビュー (過去 30 日間)
DARSHAN KUMAR BISWAS
DARSHAN KUMAR BISWAS 2022 年 7 月 4 日
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 件のコメント
DGM
DGM 2022 年 7 月 4 日
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 2022 年 7 月 4 日
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.

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

回答 (1 件)

DGM
DGM 2022 年 7 月 4 日
編集済み: DGM 2022 年 7 月 4 日
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 件のコメント
DARSHAN KUMAR BISWAS
DARSHAN KUMAR BISWAS 2022 年 7 月 5 日
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.

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

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by