How to plot line graph?

3 ビュー (過去 30 日間)
Pooja Kumari
Pooja Kumari 2018 年 4 月 24 日
コメント済み: Pooja Kumari 2018 年 4 月 24 日
In the thermal analysis of a video, I have divided video into the number of multiple frames. and got the temperature value associated with each pixel of the collected frames. The data is of 1*380*10 single type (where first two are the pixels co-ordinates and 10 is the number of frames). I want to plot temperature v/s pixel. Please guide how to do. Thanks in advance :)
  4 件のコメント
Ameer Hamza
Ameer Hamza 2018 年 4 月 24 日
What are dimensions of your image frame? If each frame is 1*380, then it will just be a straight line. What do you mean by plotting temperature vs pixels? Do what want to 2D plot or a color map.
Pooja Kumari
Pooja Kumari 2018 年 4 月 24 日
ya each frame is 1*380, and there are 10 frames. Each pixel in the frame has temperature value associated with it.so wanted to plot a line graph of these temperature values v/s pixel.

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

採用された回答

KALYAN ACHARJYA
KALYAN ACHARJYA 2018 年 4 月 24 日
編集済み: KALYAN ACHARJYA 2018 年 4 月 24 日
% Repeat for all pixels
% i for rows coordinate, j column coordinate and t tempature at that location
{
plot3(i,j,t);
hold on;
}
hold off;
  1 件のコメント
Pooja Kumari
Pooja Kumari 2018 年 4 月 24 日
thanks for the reply :)

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLighting, Transparency, and Shading についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by