Plot x y and time

조회 수: 7 (최근 30일)
Right Grievous
Right Grievous 2013년 1월 16일
Hi,
I am using scripts written by someone else a long time ago (who has long since gone) and I'm having trouble getting them to do something which is probably quite simple.
I have data from some tracking software and I'm trying to plot the x and y coordinates, as you would do normally but I want to show where the object spent the most time in the form of a pcolor map (so red will signify lots of time spent in an area etc).
I have a matrix (4 x ~30000), rows 1 and 2 contain the x and y coordinates and row 4 contains time in ms (at a 20ms sampling rate I believe).
I am sure I will need to bin the data somehow but I'm not sure how to do this...
Ultimately I want to do the same with velocity (a pcolor map with red signifying 'high speed') but I thought I would tackle this problem first.
Thank you very much for any help,
Rod.

채택된 답변

Doug Hull
Doug Hull 2013년 1월 16일
편집: Doug Hull 2013년 1월 16일
This is a 2-d histogram problem.
Here is a link to a MATLAB file Exchange file that should calculate a 2-d histogram for you.
Doug
  댓글 수: 2
Right Grievous
Right Grievous 2013년 1월 16일
Hi Doug and thanks for the reply!
I had a look at your second link and tried out the code there, it does exactly what I want, which is great and really smart (I am guessing that it is plotting x and y coordinates into bins, in my case these are coded to a specific timebase which means that this also plots time?).
In any case I was wondering if it is possible to smooth the plot more? I want to produce a pcolor plot as we use this for similar purposes but we apply gaussian smoothing to these so they obviously look a lot more pleasing to the eye... is it possible to incorporate a smoothing filter into your piece of script?
Thanks,
Rod.
Image Analyst
Image Analyst 2013년 1월 16일
With few data points, it obviously will look quantized. The best option is to just collect some more data. A less desirable option is to blur your 2D histogram as if it were an image. For example
blurred2DHist = conv2(original2DHist, ones(5)/5^2, 'same');
imshow(blurred2DHist);
colormap(hot);
colorbar;

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Distribution Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by