You have pixel and temperature value in hand.... you can use plot eh.
How to plot line graph?
5 次查看(过去 30 天)
显示 更早的评论
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
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.
采纳的回答
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;
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!