How to extract values from array

3 visualizaciones (últimos 30 días)
vimal gayan
vimal gayan el 23 de Mayo de 2019
Comentada: vimal gayan el 24 de Mayo de 2019
I am trying to track 3 points of a moving video.First i insert those points and while video playing i want track those points path using x & y values.
num_frame=1; ex_points = {};
while ~isDone(videoFileReader)
frame = videoFileReader();
[points,validity] = tracker(frame);
ex_points{num_frame} = points;
out = insertMarker(frame,points(validity, :),'+','size',10);
% Where position is for one or more disconnected lines, an M-by-4 matrix, where each four-element vector [x1, y1, x2,y2], describe a line with endpoints, [x1 y1] and [x2 y2].
videoPlayer(out);
num_frame = num_frame+1;
end
I able to store the values in to array,
ex_points{num_frame} = points;
then i try to print one record using below code,
disp(hist_points{5});
the result was like below,
w.PNG
How can i get values seperately from this reslut??
I need result like each point x and y value seprately,In above image show 3 points at a one time.

Respuesta aceptada

dpb
dpb el 23 de Mayo de 2019
disp(hist_points{5}(1)); % for first element in cell 5
Read up in the documentation on cell arrays about dereferencing.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by