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

KSSV
KSSV 2018년 4월 24일

You have pixel and temperature value in hand.... you can use plot eh.

Pooja Kumari
Pooja Kumari 2018년 4월 24일

I know that plot is to be used. But I am not able to. Can you tell how can I use it. I have temperature value that's true, but pixel has two co-ordinated. How to use it. I am sorry for being naive.

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일

0 개 추천

% 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;

추가 답변 (0개)

카테고리

질문:

2018년 4월 24일

댓글:

2018년 4월 24일

Community Treasure Hunt

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

Start Hunting!

Translated by